Files
deepseek-harness/packages/client/file-upload/tsconfig.host.json
T
creatixchu 58ec1f0867 refactor(file-upload): keep storage helpers and the HTTP route package-private
Stop re-exporting the verbatim file-store helpers from attachment-local, move
the raw-byte upload route handler into a non-entry module of file-upload, and
drop the redundant hook type re-exports from the Client entry. The route test
moves next to the module it exercises.
2026-09-04 15:41:25 +08:00

21 lines
660 B
JSON

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "lib/types",
"tsBuildInfoFile": "lib/tsconfig.host.tsbuildinfo"
},
"files": ["src/http-route.ts", "src/index.ts", "src/protocol.ts", "src/types.ts"],
"references": [
{ "path": "../../../vendor/cordis" },
{ "path": "../../util/brand" },
{ "path": "../../core/agent" },
{ "path": "../../core/scope" },
{ "path": "../../core/session" },
{ "path": "../../attachment/attachment" },
{ "path": "../../interaction/commands" },
{ "path": "../../typert/protocol" },
{ "path": "../connection/tsconfig.host.json" }
]
}