2025-05-13 06:15:11 +08:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
2025-06-16 10:23:47 +08:00
|
|
|
"composite": true,
|
2025-05-13 06:15:11 +08:00
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "dist",
|
|
|
|
"tsBuildInfoFile": "dist/tsconfig.build.tsbuildinfo",
|
2025-06-16 10:23:47 +08:00
|
|
|
"emitDeclarationOnly": true,
|
2025-06-09 18:00:20 +08:00
|
|
|
"isolatedDeclarations": true,
|
|
|
|
"types": ["node", "bun"]
|
2025-05-13 06:15:11 +08:00
|
|
|
},
|
2025-06-09 18:00:20 +08:00
|
|
|
"include": ["src/**/*.ts"],
|
|
|
|
"exclude": ["**/*.test.ts"],
|
2025-05-13 06:15:11 +08:00
|
|
|
"references": []
|
2025-06-09 18:00:20 +08:00
|
|
|
}
|