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:35:05 +09:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
2025-09-19 16:34:10 +09:00
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@bff/core/*": ["src/core/*"],
|
|
|
|
|
"@bff/infra/*": ["src/infra/*"],
|
|
|
|
|
"@bff/modules/*": ["src/modules/*"],
|
|
|
|
|
"@bff/integrations/*": ["src/integrations/*"],
|
2025-10-03 14:26:55 +09:00
|
|
|
"@customer-portal/domain": ["../../packages/domain/index.ts"],
|
|
|
|
|
"@customer-portal/domain/*": ["../../packages/domain/*"],
|
2025-10-03 13:19:26 +09:00
|
|
|
"@customer-portal/integrations-whmcs": ["../../packages/integrations/whmcs/src"],
|
|
|
|
|
"@customer-portal/integrations-whmcs/*": ["../../packages/integrations/whmcs/src/*"],
|
|
|
|
|
"@customer-portal/integrations-freebit": ["../../packages/integrations/freebit/src"],
|
|
|
|
|
"@customer-portal/integrations-freebit/*": ["../../packages/integrations/freebit/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,
|
2025-10-08 18:35:05 +09:00
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true
|
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-02 18:47:30 +09:00
|
|
|
"include": ["src/**/*", "scripts/**/*", "src/types/**/*"],
|
2025-09-19 16:34:10 +09:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|