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-09-19 16:34:10 +09:00
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "node16",
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@bff/core/*": ["src/core/*"],
|
|
|
|
|
"@bff/infra/*": ["src/infra/*"],
|
|
|
|
|
"@bff/modules/*": ["src/modules/*"],
|
|
|
|
|
"@bff/integrations/*": ["src/integrations/*"],
|
|
|
|
|
"@customer-portal/domain": ["../../packages/domain/src"],
|
|
|
|
|
"@customer-portal/domain/*": ["../../packages/domain/src/*"],
|
2025-09-20 11:35:40 +09:00
|
|
|
"@customer-portal/validation": ["../../packages/validation/src"],
|
|
|
|
|
"@customer-portal/validation/*": ["../../packages/validation/src/*"],
|
2025-09-19 16:34:10 +09:00
|
|
|
"@customer-portal/logging": ["../../packages/logging/src"],
|
2025-09-20 11:35:40 +09:00
|
|
|
"@customer-portal/logging/*": ["../../packages/logging/src/*"]
|
2025-09-19 16:34:10 +09:00
|
|
|
},
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"typeRoots": ["./node_modules/@types"],
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"strictPropertyInitialization": false
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-09-19 16:34:10 +09:00
|
|
|
"ts-node": {
|
|
|
|
|
"transpileOnly": true,
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "CommonJS"
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-09-25 11:44:10 +09:00
|
|
|
"include": ["src/**/*", "scripts/**/*"],
|
2025-09-19 16:34:10 +09:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|