waterwolf-auth/tsconfig.json

18 lines
414 B
JSON
Raw Normal View History

2024-07-14 20:25:52 -04:00
{
"compilerOptions": {
"baseUrl": ".",
2024-07-14 20:25:52 -04:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2024-07-14 20:25:52 -04:00
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@server/*": ["./apps/backend/src/*"]
}
2024-07-14 20:25:52 -04:00
}
2024-07-27 01:19:40 -04:00
}