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-25 18:59:07 +09:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
2025-09-17 18:43:43 +09:00
|
|
|
"lib": ["ES2022"],
|
2025-08-20 18:02:50 +09:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
2025-09-19 16:34:10 +09:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2025-09-18 12:34:26 +09:00
|
|
|
"composite": true,
|
2025-09-19 16:34:10 +09:00
|
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
|
2025-09-26 17:02:36 +09:00
|
|
|
"paths": {}
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
|
2025-09-18 12:34:26 +09:00
|
|
|
}
|