training_data/tsconfig.json

22 lines
568 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,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@server/*": [
"./apps/server/src/*"
],
"@web/*": [
2024-09-03 11:04:19 +08:00
"apps/web/*"
2024-07-11 11:00:51 +08:00
]
}
}
}