doctor-mail/tsconfig.base.json

26 lines
691 B
JSON
Raw Normal View History

2024-07-11 11:00:51 +08:00
{
2024-12-30 09:22:38 +08:00
"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/*",
],
2024-07-11 11:00:51 +08:00
}
2024-12-30 09:22:38 +08:00
}
2024-07-11 11:00:51 +08:00
}