This commit is contained in:
xy
2026-03-13 01:38:40 +00:00
parent e6e4f88257
commit 28855885cd
311 changed files with 89544 additions and 94350 deletions

View File

@@ -3,20 +3,19 @@
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"strict": true,
"strict": false,
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"charset": "utf8",
"allowJs": false,
"pretty": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"noFallthroughCasesInSwitch": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strictNullChecks": false,
@@ -24,13 +23,21 @@
"importHelpers": true,
"baseUrl": ".",
"paths": {
"@db/*": ["app/db/*"],
"@consts": ["app/consts"]
},
"@db/*": ["../shared/db/*"],
"@consts": ["../shared/consts"],
"@domain/*": ["../shared/domain/*"],
"@resource/*": ["../shared/resource/*"],
"@pubUtils/*": ["../shared/pubUtils/*"]
}
},
"include": [
"app/**/*", // 只检查app目录下的所有文件按需修改
"typings/**/*"
],
"exclude": [
"app/public",
"app/views",
"node_modules*"
"node_modules",
"**/node_modules/**"
]
}
}