[common/hc] Add new MacBook paths to tsconfig

This commit is contained in:
Alyxia Sother 2023-06-27 09:55:48 +02:00
parent ddd1111380
commit aef909f181
No known key found for this signature in database
GPG Key ID: 01E16C4E775A37E4
1 changed files with 12 additions and 3 deletions

View File

@ -9,10 +9,19 @@
"noEmit": true,
"jsx": "react",
"paths": {
"@hh/*": ["/Users/alyxia/Documents/gitrepos/hh3/types/*"],
"@hh/ext/*": ["/Users/alyxia/Documents/gitrepos/hh3/ext/*"]
"@hh/*": [
"/Users/alyxia/Documents/gitrepos/hh3/types/*",
"/Users/alyxia/Documents/Installations/hh3/types/*"
],
"@hh/ext/*": [
"/Users/alyxia/Documents/gitrepos/hh3/ext/*",
"/Users/alyxia/Documents/Installations/hh3/ext/*"
]
},
"typeRoots": ["/Users/alyxia/Documents/gitrepos/hh3/types"]
"typeRoots": [
"/Users/alyxia/Documents/gitrepos/hh3/types",
"/Users/alyxia/Documents/Installations/hh3/types"
]
},
"include": ["./ext/**/*", "./global.d.ts"]
}