Files
DiceCloud/app/tsconfig.json
Thaum Rystra e6963ec865 Began the great TypeScript Migration
It's helping a lot to move to the new parenting system
2023-09-28 14:16:34 +02:00

39 lines
768 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": ".",
"preserveSymlinks": true,
"allowJs": true,
"checkJs": true,
"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"
]
}
}