2025-08-30 15:47:48 +09:00
|
|
|
{
|
2025-08-30 17:11:10 +09:00
|
|
|
"extends": "./tsconfig.base.json",
|
2025-08-30 15:47:48 +09:00
|
|
|
"compilerOptions": {
|
2025-09-01 15:11:42 +09:00
|
|
|
"composite": true,
|
2025-08-30 15:47:48 +09:00
|
|
|
"noEmit": false,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
|
|
|
|
|
"outDir": "./dist",
|
2025-08-30 17:23:50 +09:00
|
|
|
"rootDir": "./src",
|
2025-08-30 15:47:48 +09:00
|
|
|
"sourceMap": true,
|
2025-09-01 15:11:42 +09:00
|
|
|
"declaration": true,
|
2025-08-30 17:11:10 +09:00
|
|
|
"removeComments": true,
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
2025-09-01 15:11:42 +09:00
|
|
|
"@/*": ["src/*"],
|
2025-09-17 18:43:43 +09:00
|
|
|
"@bff/core/*": ["src/core/*"],
|
|
|
|
|
"@bff/infra/*": ["src/infra/*"],
|
2025-09-18 14:52:26 +09:00
|
|
|
"@bff/modules/*": ["src/modules/*"],
|
2025-09-17 18:43:43 +09:00
|
|
|
"@bff/integrations/*": ["src/integrations/*"]
|
2025-08-30 17:11:10 +09:00
|
|
|
}
|
2025-08-30 15:47:48 +09:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
2025-09-01 15:11:42 +09:00
|
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
|
2025-09-17 18:43:43 +09:00
|
|
|
"references": [{ "path": "../../packages/domain" }]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|