mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
The data layer no longer depends on the React glue package, and business plugins no longer depend on web-react at all: - The store engine (zustand vanilla + immer + persist + dev freeze), defineStore, and shallowEqual move to @deepseek-ai/dsh-client-runtime, exported from the ./client main entry — no ./store subpath survives on either package (the web-react one is deleted, none is opened on runtime). - Store products are bare snapshot sources: useSelector leaves SnapshotStore/StoreInstance and Session; every hook is composed at the binding site in web-react's renderer (per-source cached uSES binding). The SlotRendererHost sessions face carries bare observables only. - SessionProvider becomes a standard-kit seat: an entry whose children declare a session-scope slot receives the framework component as a prop, retiring the last value import of web-react from plugin packages. UseSession and the session-area types now live in ui-slots. - web-react shrinks to the shell-only React glue (renderer, providers, uSES bridge); zustand/immer belong to runtime alone; the module-table seed and tsdown externals drop the web-react/store seat. - NODE_ENV replacement is defined once in the shared tsdown client preset (browser bundles inline the engine and lost vite's define); the 3-line process.env typecheck shim moves to runtime with the engine. - Stray tsc artifacts (.js/.d.ts/.d.ts.map beside sources under src/) swept repo-wide; they shadow real sources under vitest resolution. Verified: both aggregate typecheck programs at zero; 604 client tests green; repo-wide grep for web-react/store at zero; real-host playwright run 7/7 including persist round-trip. ci: fix test/docs
151 lines
7.4 KiB
JSON
151 lines
7.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2024",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
"composite": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"types": ["node"],
|
|
// Source-level resolution for every repo-local graph. Project references,
|
|
// not declaration path aliases, keep each package/vendor source compiled
|
|
// under its own tsconfig boundary.
|
|
"paths": {
|
|
"cordis": ["./vendor/cordis/src"],
|
|
"cosmokit": ["./vendor/cosmokit/src"],
|
|
"schemastery": ["./vendor/schemastery/src"],
|
|
"@cordisjs/plugin-loader": ["./vendor/loader/src"],
|
|
"@cordisjs/plugin-include": ["./vendor/include/src"],
|
|
"@cordisjs/plugin-group": ["./vendor/group/src"],
|
|
"@cordisjs/plugin-timer": ["./vendor/timer/src"],
|
|
"@cordisjs/plugin-hmr": ["./vendor/hmr/src"],
|
|
"@cordisjs/plugin-logger-console": ["./vendor/logger-console/src"],
|
|
"@deepseek-ai/dsh-invariants": ["./packages/support/invariants/src/index.ts"],
|
|
"@deepseek-ai/dsh-session/invariant": ["./packages/core/session/src/invariant.ts"],
|
|
"@deepseek-ai/dsh-session/types": ["./packages/core/session/src/types.ts"],
|
|
"@deepseek-ai/dsh-session/surface": ["./packages/core/session/src/surface.ts"],
|
|
"@deepseek-ai/dsh-llm/types": ["./packages/llm/llm/src/types.ts"],
|
|
"@deepseek-ai/dsh-llm/brand": ["./packages/llm/llm/src/brand.ts"],
|
|
"@deepseek-ai/dsh-tools/presentation": ["./packages/core/tools/src/presentation.ts"],
|
|
"@deepseek-ai/dsh-user-approval/types": ["./packages/ui/user-approval/src/types.ts"],
|
|
"@deepseek-ai/dsh-user-interaction/types": ["./packages/ui/user-interaction/src/types.ts"],
|
|
"@deepseek-ai/dsh-agent/invariant": ["./packages/core/agent/src/invariant.ts"],
|
|
"@deepseek-ai/dsh-scope/invariant": ["./packages/core/scope/src/invariant.ts"],
|
|
"@deepseek-ai/dsh-agent-loop/invariant": ["./packages/core/agent-loop/src/invariant.ts"],
|
|
"@deepseek-ai/dsh-*/invariant": [
|
|
"./packages/core/*/src/invariant.ts",
|
|
"./packages/prompt/*/src/invariant.ts",
|
|
"./packages/llm/*/src/invariant.ts",
|
|
"./packages/bash/*/src/invariant.ts",
|
|
"./packages/code-runtime/*/src/invariant.ts",
|
|
"./packages/fs/*/src/invariant.ts",
|
|
"./packages/skill/*/src/invariant.ts",
|
|
"./packages/compact/*/src/invariant.ts",
|
|
"./packages/context/*/src/invariant.ts",
|
|
"./packages/goal/*/src/invariant.ts",
|
|
"./packages/guard/*/src/invariant.ts",
|
|
"./packages/plan/*/src/invariant.ts",
|
|
"./packages/subagent/*/src/invariant.ts",
|
|
"./packages/tasks/*/src/invariant.ts",
|
|
"./packages/workflow/*/src/invariant.ts",
|
|
"./packages/web/*/src/invariant.ts",
|
|
"./packages/spill/*/src/invariant.ts",
|
|
"./packages/timeout/*/src/invariant.ts",
|
|
"./packages/todo/*/src/invariant.ts",
|
|
"./packages/cordis/*/src/invariant.ts",
|
|
"./packages/sandbox/*/src/invariant.ts",
|
|
"./packages/hooks/*/src/invariant.ts",
|
|
"./packages/session-persistence/*/src/invariant.ts",
|
|
"./packages/session-query/*/src/invariant.ts",
|
|
"./packages/sdk/*/src/invariant.ts",
|
|
"./packages/ui/*/src/invariant.ts",
|
|
"./packages/examples/*/src/invariant.ts",
|
|
"./packages/util/*/src/invariant.ts",
|
|
"./packages/mcp/*/src/invariant.ts",
|
|
"./packages/support/*/src/invariant.ts"
|
|
],
|
|
// host/client package names prefix the group dir (dsh-client-<dir>), so
|
|
// the generic dsh-*/invariant list above cannot map them; strip the
|
|
// group prefix with a dedicated wildcard per group instead.
|
|
"@deepseek-ai/dsh-host-*/invariant": ["./packages/host/*/src/invariant.ts"],
|
|
"@deepseek-ai/dsh-client-*/invariant": ["./packages/client/*/src/invariant.ts"],
|
|
"@deepseek-ai/dsh-client-*/client": ["./packages/client/*/src/client"],
|
|
// One wildcard maps every @deepseek-ai/dsh-<name> to its source. Package
|
|
// dir names are unique across groups, so first-on-disk-wins resolution is
|
|
// unambiguous; adding a package under an existing group needs no edit
|
|
// here. The build graph's project references (tsconfig.build.json) stay
|
|
// explicit — TS project references have no wildcard form.
|
|
"@deepseek-ai/dsh-host-apiproxy": ["./packages/host/apiproxy/src"],
|
|
"@deepseek-ai/dsh-host-apiproxy/client": ["./packages/host/apiproxy/src/fetch/client.ts"],
|
|
"@deepseek-ai/dsh-host-apiproxy/*": ["./packages/host/apiproxy/src/*"],
|
|
"@deepseek-ai/dsh-host-runtime": ["./packages/host/runtime/src"],
|
|
"@deepseek-ai/dsh-host-webserver": ["./packages/host/webserver/src"],
|
|
"@deepseek-ai/dsh-client-ui-slots": ["./packages/client/ui-slots/src"],
|
|
"@deepseek-ai/dsh-client-ui-primitives": ["./packages/client/ui-primitives/src"],
|
|
"@deepseek-ai/dsh-client-web-react": ["./packages/client/web-react/src"],
|
|
"@deepseek-ai/dsh-client-connection": ["./packages/client/connection/src"],
|
|
"@deepseek-ai/dsh-client-runtime": ["./packages/client/runtime/src"],
|
|
"@deepseek-ai/dsh-client-runtime/client": ["./packages/client/runtime/src/client"],
|
|
"@deepseek-ai/dsh-client-runtime/loader": ["./packages/client/runtime/src/client/loader"],
|
|
"@deepseek-ai/dsh-client-ui-layout": ["./packages/client/ui-layout/src"],
|
|
"@deepseek-ai/dsh-client-ui-sidebar": ["./packages/client/ui-sidebar/src"],
|
|
"@deepseek-ai/dsh-client-ui-conversation": ["./packages/client/ui-conversation/src"],
|
|
"@deepseek-ai/dsh-client-ui-trajectory": ["./packages/client/ui-trajectory/src"],
|
|
"@deepseek-ai/dsh-client-ui-theme": ["./packages/client/ui-theme/src"],
|
|
"@deepseek-ai/dsh-client-i18n": ["./packages/client/i18n/src"],
|
|
"@deepseek-ai/dsh-client-web": ["./packages/client/web/src"],
|
|
"@deepseek-ai/dsh-*": [
|
|
"./packages/core/*/src",
|
|
"./packages/prompt/*/src",
|
|
"./packages/llm/*/src",
|
|
"./packages/bash/*/src",
|
|
"./packages/pty/*/src",
|
|
"./packages/code-runtime/*/src",
|
|
"./packages/fs/*/src",
|
|
"./packages/lsp/*/src",
|
|
"./packages/skill/*/src",
|
|
"./packages/compact/*/src",
|
|
"./packages/context/*/src",
|
|
"./packages/goal/*/src",
|
|
"./packages/guard/*/src",
|
|
"./packages/plan/*/src",
|
|
"./packages/subagent/*/src",
|
|
"./packages/tasks/*/src",
|
|
"./packages/workflow/*/src",
|
|
"./packages/web/*/src",
|
|
"./packages/spill/*/src",
|
|
"./packages/timeout/*/src",
|
|
"./packages/todo/*/src",
|
|
"./packages/cordis/*/src",
|
|
"./packages/sandbox/*/src",
|
|
"./packages/hooks/*/src",
|
|
"./packages/session-persistence/*/src",
|
|
"./packages/session-query/*/src",
|
|
"./packages/session-title/*/src",
|
|
"./packages/sdk/*/src",
|
|
"./packages/ui/*/src",
|
|
"./packages/examples/*/src",
|
|
"./packages/util/*/src",
|
|
"./packages/mcp/*/src",
|
|
"./packages/support/*/src",
|
|
"./packages/host/*/src",
|
|
"./packages/client/*/src"
|
|
]
|
|
}
|
|
}
|
|
}
|