dotfiles/common/hellcooling/config/tsconfig.json

31 lines
895 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noEmit": true,
"jsx": "react",
"paths": {
"@hh/*": [
"/Users/alyxia/Documents/gitrepos/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/*",
"/home/alyxia/Documents/Installations/hh3/ext/*"
]
},
"typeRoots": [
"/Users/alyxia/Documents/gitrepos/hh3/types",
"/Users/alyxia/Documents/Installations/hh3/types",
"/home/alyxia/Documents/Installations/hh3/types"
]
},
"include": ["./ext/**/*", "./global.d.ts"]
}