waterwolf-auth/tsconfig.json

19 lines
453 B
JSON
Raw Permalink Normal View History

2024-07-15 00:25:52 +00:00
{
"compilerOptions": {
"baseUrl": ".",
2024-07-15 00:25:52 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2024-07-15 00:25:52 +00:00
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"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
}