2025-08-30 15:47:48 +09:00
|
|
|
{
|
2025-09-19 16:34:10 +09:00
|
|
|
"extends": "./tsconfig.json",
|
2025-08-30 15:47:48 +09:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"noEmit": false,
|
2025-09-19 16:34:10 +09:00
|
|
|
"composite": true,
|
2025-08-30 15:47:48 +09:00
|
|
|
"outDir": "./dist",
|
2025-08-30 17:23:50 +09:00
|
|
|
"rootDir": "./src",
|
2025-09-01 15:11:42 +09:00
|
|
|
"declaration": true,
|
2025-09-19 16:34:10 +09:00
|
|
|
"sourceMap": true,
|
2025-08-30 17:11:10 +09:00
|
|
|
"removeComments": true,
|
2025-09-19 16:34:10 +09:00
|
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo"
|
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-19 16:34:10 +09:00
|
|
|
"references": [
|
2025-09-25 18:59:07 +09:00
|
|
|
{ "path": "../../packages/domain" }
|
2025-09-19 16:34:10 +09:00
|
|
|
]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|