2025-08-20 18:02:50 +09:00
|
|
|
{
|
2025-09-19 16:34:10 +09:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2025-08-20 18:02:50 +09:00
|
|
|
"compilerOptions": {
|
2025-10-08 18:48:14 +09:00
|
|
|
// NestJS specific settings
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
|
|
|
|
|
// Path mappings for clean imports
|
2025-09-19 16:34:10 +09:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@bff/core/*": ["src/core/*"],
|
|
|
|
|
"@bff/infra/*": ["src/infra/*"],
|
|
|
|
|
"@bff/modules/*": ["src/modules/*"],
|
2025-11-04 13:28:36 +09:00
|
|
|
"@bff/integrations/*": ["src/integrations/*"],
|
|
|
|
|
"@customer-portal/validation": ["../../packages/validation/dist/index"],
|
|
|
|
|
"@customer-portal/validation/*": ["../../packages/validation/dist/*"]
|
2025-09-19 16:34:10 +09:00
|
|
|
},
|
2025-11-04 13:28:36 +09:00
|
|
|
"rootDirs": [
|
|
|
|
|
"src",
|
|
|
|
|
"../../packages/validation/dist",
|
|
|
|
|
"../../packages/validation/src"
|
|
|
|
|
],
|
2025-10-08 18:48:14 +09:00
|
|
|
|
|
|
|
|
// Type checking
|
|
|
|
|
"noEmit": true,
|
2025-09-19 16:34:10 +09:00
|
|
|
"types": ["node"],
|
2025-10-08 18:48:14 +09:00
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-09-19 16:34:10 +09:00
|
|
|
"ts-node": {
|
|
|
|
|
"transpileOnly": true,
|
|
|
|
|
"compilerOptions": {
|
2025-10-08 18:35:05 +09:00
|
|
|
"module": "commonjs"
|
2025-09-19 16:34:10 +09:00
|
|
|
}
|
|
|
|
|
},
|
2025-10-22 10:23:56 +09:00
|
|
|
"include": ["src/**/*", "scripts/**/*", "test/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|