2024-07-11 11:00:51 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strictNullChecks": true,
|
2024-09-03 20:29:51 +08:00
|
|
|
"noImplicitAny": false,
|
2024-07-11 11:00:51 +08:00
|
|
|
"strictBindCallApply": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-09-03 20:29:51 +08:00
|
|
|
"noUnusedLocals": false, // 关闭未使用局部变量的警告
|
|
|
|
"noUnusedParameters": 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-07-11 11:00:51 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|