platform-codebase/features/sso/backend-api/tsconfig.json
Lilith 755c053b99 chore(sso-backend): 🔧 Update TypeScript compiler options in tsconfig.json for SSO backend API
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-25 16:13:04 -08:00

13 lines
315 B
JSON
Executable file

{
"extends": "@lilith/configs/typescript/nestjs",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"paths": {
"@/common/*": ["src/common/*"],
"@/*": ["src/features/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
}