Files
DiceCloud/app/tsconfig.json
2023-09-29 17:59:17 +02:00

40 lines
791 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": ".",
"preserveSymlinks": true,
"allowJs": true,
"checkJs": true,
"outDir": "build",
"paths": {
"/*": [
"./*"
],
"meteor/*": [
"node_modules/@types/meteor/*",
".meteor/local/types/packages.d.ts"
],
"meteor/aldeed:collection2": [
"packages/collection2/collection2.js"
]
}
},
"vueCompilerOptions": {
"target": 2 // For Vue version <= 2.6.14
},
"exclude": [
"node_modules",
"**/node_modules/*",
".meteor"
],
"typeAcquisition": {
"include": [
"meteor"
]
}
}