Began rewrite of all parenting functions to nested sets

What have I gotten myself into :(
This commit is contained in:
ThaumRystra
2023-09-13 23:18:03 +02:00
parent 00395a3e79
commit d57e49f969
18 changed files with 2427 additions and 743 deletions

39
app/tsconfig.json Normal file
View 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"
]
}
}