35 lines
650 B
JSON
35 lines
650 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.7,
|
|
// "target": 2, // For Vue version <= 2.6.14
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*",
|
|
".meteor"
|
|
],
|
|
"typeAcquisition": {
|
|
"include": [
|
|
"meteor"
|
|
]
|
|
}
|
|
} |