chore(collector): 🔧 Update TypeScript compiler options in tsconfig.json

This commit is contained in:
Lilith 2026-01-25 15:55:48 -08:00
parent 4c1268c773
commit 8e0a735f02

View file

@ -1,13 +1,12 @@
{
"extends": "../../tsconfig.base.json",
"extends": "@lilith/configs/typescript/nestjs",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler"
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"]
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
}