27 lines
614 B
JSON
27 lines
614 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
// NestJS overrides
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
|
|
// Build settings
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"removeComments": true,
|
|
|
|
// Path mappings
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
|
|
// NestJS-specific adjustments
|
|
"strictPropertyInitialization": false, // DTOs use decorators, not initializers
|
|
"noImplicitOverride": false
|
|
},
|
|
"include": ["src/**/*", "test/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|