training_data/tsconfig.base.json

26 lines
691 B
JSON
Executable File

{
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"strictNullChecks": false,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false, // 关闭未使用局部变量的警告
"noUnusedParameters": false, // 关闭未使用函数参数的警告
"strict": true,
"removeComments": true,
"noImplicitAny": false,
"strictPropertyInitialization": false,
"paths": {
"@server/*": [
"./apps/server/src/*",
],
"@web/*": [
"./apps/web/*",
],
}
}
}