[common/hc] Add desktop paths to tsconfig

This commit is contained in:
Alyxia Sother 2023-06-28 15:45:16 +02:00
parent 8ea0cac15a
commit 576cf2aa03
No known key found for this signature in database
GPG Key ID: 0B2497099595CAA5
1 changed files with 6 additions and 3 deletions

View File

@ -11,16 +11,19 @@
"paths": {
"@hh/*": [
"/Users/alyxia/Documents/gitrepos/hh3/types/*",
"/Users/alyxia/Documents/Installations/hh3/types/*"
"/Users/alyxia/Documents/Installations/hh3/types/*",
"/home/alyxia/Documents/Installations/hh3/types/*"
],
"@hh/ext/*": [
"/Users/alyxia/Documents/gitrepos/hh3/ext/*",
"/Users/alyxia/Documents/Installations/hh3/ext/*"
"/Users/alyxia/Documents/Installations/hh3/ext/*",
"/home/alyxia/Documents/Installations/hh3/ext/*"
]
},
"typeRoots": [
"/Users/alyxia/Documents/gitrepos/hh3/types",
"/Users/alyxia/Documents/Installations/hh3/types"
"/Users/alyxia/Documents/Installations/hh3/types",
"/home/alyxia/Documents/Installations/hh3/types"
]
},
"include": ["./ext/**/*", "./global.d.ts"]