Assist_Design/apps/bff/tsconfig.json

28 lines
638 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.json",
"compilerOptions": {
2025-08-22 17:02:49 +09:00
// NestJS overrides
"module": "CommonJS",
2025-08-22 17:02:49 +09:00
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2025-08-22 17:02:49 +09:00
// Build settings
"outDir": "./dist",
"baseUrl": "./",
"removeComments": true,
"target": "ES2024",
2025-08-22 17:02:49 +09:00
// Path mappings
"paths": {
"@/*": ["src/*"]
},
2025-08-22 17:02:49 +09:00
// NestJS-specific adjustments
"strictPropertyInitialization": false, // DTOs use decorators, not initializers
2025-08-22 17:02:49 +09:00
"noImplicitOverride": false
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules", "dist"]
}