atlilith/@platform/codebase/@features/sso/backend-api/tsconfig.json

14 lines
315 B
JSON
Raw Normal View History

{
"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"]
}