training_data/tsconfig.json

22 lines
577 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/*": [
"./apps/web-client/*"
]
}
}
}