Files
deepseek-harness/packages/api/gateway/tsconfig.client.json
T
imccyu 804b1ffbfc refactor(api): converge the Remote failure vocabulary and client surface
Single RemoteError with a merge-extensible, domain-prefixed code map;
owners throw at the failure point; streams surface marked failures;
clients consume ctx.remote directly with isRemoteFailure as the only
discrimination point and construct no failure instances.
2026-08-28 22:37:36 +08:00

33 lines
719 B
JSON

{
"extends": "../../../tsconfig.base.client.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "lib/types",
"tsBuildInfoFile": "lib/tsconfig.client.tsbuildinfo"
},
"files": [
"src/client/index.ts",
"src/client/journal-stream.ts",
"src/client/remote-events.ts",
"src/client/remote-stream.ts",
"src/client/snapshot-stream.ts",
"src/client/stream-client.ts",
"src/remote-error-codes.ts",
"src/stream-protocol.ts"
],
"references": [
{
"path": "../../../vendor/cordis"
},
{
"path": "../../client/connection/tsconfig.client.json"
},
{
"path": "../../typert/protocol"
},
{
"path": "../../util/crypto"
}
]
}