2025-09-19 16:34:10 +09:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"composite": true,
|
|
|
|
|
"tsBuildInfoFile": "dist/.tsbuildinfo"
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
2025-09-26 17:02:36 +09:00
|
|
|
"exclude": ["dist", "node_modules", "**/*.test.ts", "**/*.spec.ts"],
|
|
|
|
|
"references": [{ "path": "../domain" }]
|
2025-09-19 16:34:10 +09:00
|
|
|
}
|