Began rewrite of all parenting functions to nested sets
What have I gotten myself into :(
This commit is contained in:
39
app/tsconfig.json
Normal file
39
app/tsconfig.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"target": "ES2020",
|
||||
"jsx": "react",
|
||||
"strictNullChecks": true,
|
||||
"strictFunctionTypes": true,
|
||||
"baseUrl": ".",
|
||||
"preserveSymlinks": true,
|
||||
"paths": {
|
||||
"/*": [
|
||||
"./*"
|
||||
],
|
||||
"meteor/*": [
|
||||
"node_modules/@types/meteor/*",
|
||||
".meteor/local/types/packages.d.ts"
|
||||
],
|
||||
"meteor/aldeed:collection2": [
|
||||
"packages/collection2/collection2.js"
|
||||
]
|
||||
},
|
||||
"checkJs": false,
|
||||
"allowJs": true
|
||||
},
|
||||
"vueCompilerOptions": {
|
||||
"target": 2 // For Vue version <= 2.6.14
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"**/node_modules/*",
|
||||
".meteor"
|
||||
],
|
||||
"typeAcquisition": {
|
||||
"include": [
|
||||
"meteor"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user