Files
DiceCloud/app/jsconfig.json
Stefan Zermatten 3532898be9 updated jsconfig
2023-01-14 14:20:39 +02:00

34 lines
598 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": ".",
"paths": {
"/*": [
"./*"
],
"meteor/aldeed:collection2": [
"packages\\collection2\\collection2.js"
]
},
"checkJs": true,
"allowJs": true
},
"vueCompilerOptions": {
"target": 2
},
"exclude": [
"node_modules",
"**/node_modules/*",
".meteor"
],
"typeAcquisition": {
"include": [
"meteor"
]
}
}