training_data/tsconfig.base.json

27 lines
823 B
JSON
Raw Normal View History

2024-07-11 11:00:51 +08:00
{
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
2024-09-03 20:29:51 +08:00
"noUnusedLocals": false, // 关闭未使用局部变量的警告
"noUnusedParameters": false, // 关闭未使用函数参数的警告
2024-12-30 08:26:40 +08:00
"strict": true,
"removeComments": true,
"noImplicitAny": false,
"strictPropertyInitialization": false,
2024-07-11 11:00:51 +08:00
"paths": {
"@server/*": [
"./apps/server/src/*"
],
"@web/*": [
2024-09-03 11:04:19 +08:00
"apps/web/*"
2024-09-10 10:31:24 +08:00
],
2024-07-11 11:00:51 +08:00
}
}
}