2024-07-15 00:25:52 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-10-16 20:58:05 +00:00
|
|
|
"baseUrl": ".",
|
2024-07-15 00:25:52 +00:00
|
|
|
"experimentalDecorators": true,
|
2024-10-16 20:58:05 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
2024-07-15 00:25:52 +00:00
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
2024-07-15 18:17:40 +00:00
|
|
|
"strictNullChecks": true,
|
2024-10-16 20:58:05 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"paths": {
|
|
|
|
"@server/*": ["./apps/backend/src/*"],
|
|
|
|
"@web/*": ["./apps/frontend/*"]
|
|
|
|
}
|
2024-07-15 00:25:52 +00:00
|
|
|
}
|
2024-07-27 05:19:40 +00:00
|
|
|
}
|