18 lines
453 B
JSON
18 lines
453 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@server/*": ["./apps/backend/src/*"],
|
|
"@web/*": ["./apps/frontend/*"]
|
|
}
|
|
}
|
|
}
|