|
|
@@ -1,149 +1,15 @@
|
|
|
{
|
|
|
- // Host aggregate. packages/client type-checks in tsconfig.client.json: the two
|
|
|
- // sides merge cordis Context under the same keys, one program cannot see both.
|
|
|
+ // Solution file: the whole-repo graph for `tsc -b tsconfig.json` and the
|
|
|
+ // tsserver entry. `extends` carries the base paths for get-tsconfig
|
|
|
+ // consumers — tsx running examples/ and scripts/ (no nearer tsconfig)
|
|
|
+ // resolves workspace imports through this file. `files: []` keeps it
|
|
|
+ // program-less, so the host/client cordis Context merges never meet.
|
|
|
+ // NEVER add include/files entries, and NEVER flatten this solution into a
|
|
|
+ // single ts.Program (scripts seed tsconfig.host.json or tsconfig.client.json).
|
|
|
"extends": "./tsconfig.base.json",
|
|
|
- "compilerOptions": {
|
|
|
- "noEmit": true,
|
|
|
- "rewriteRelativeImportExtensions": false
|
|
|
- },
|
|
|
- "include": [
|
|
|
- "examples/*/src/**/*.ts",
|
|
|
- "examples/*/start.ts",
|
|
|
- "examples/*/tests/**/*.ts",
|
|
|
- "packages/*/*/tests/**/*.ts",
|
|
|
- "scripts/**/*.ts",
|
|
|
- "website/**/*.ts",
|
|
|
- "website/.vitepress/**/*.ts"
|
|
|
- ],
|
|
|
- "exclude": [
|
|
|
- "packages/client/**",
|
|
|
- "scripts/client-bundle-purity.spec.ts"
|
|
|
- ],
|
|
|
+ "files": [],
|
|
|
"references": [
|
|
|
- { "path": "./vendor/cosmokit" },
|
|
|
- { "path": "./vendor/schemastery" },
|
|
|
- { "path": "./vendor/cordis" },
|
|
|
- { "path": "./vendor/loader" },
|
|
|
- { "path": "./vendor/include" },
|
|
|
- { "path": "./vendor/group" },
|
|
|
- { "path": "./vendor/timer" },
|
|
|
- { "path": "./vendor/hmr" },
|
|
|
- { "path": "./vendor/logger-console" },
|
|
|
- { "path": "./packages/util/brand" },
|
|
|
- { "path": "./packages/util/paths" },
|
|
|
- { "path": "./packages/util/timeout" },
|
|
|
- { "path": "./packages/util/retention" },
|
|
|
- { "path": "./packages/llm/llm" },
|
|
|
- { "path": "./packages/llm/token-meter" },
|
|
|
- { "path": "./packages/core/session" },
|
|
|
- { "path": "./packages/core/scope" },
|
|
|
- { "path": "./packages/session-persistence/session-persistence" },
|
|
|
- { "path": "./packages/session-persistence/session-checkpoint-policy" },
|
|
|
- { "path": "./packages/session-persistence/session-persistence-jsonl" },
|
|
|
- { "path": "./packages/session-persistence/session-persistence-sqlite" },
|
|
|
- { "path": "./packages/session-query/session-query" },
|
|
|
- { "path": "./packages/session-title/session-title" },
|
|
|
- { "path": "./packages/session-title/session-title-llm" },
|
|
|
- { "path": "./packages/session-title/session-title-first-message-llm" },
|
|
|
- { "path": "./packages/session-title/session-title-all-messages-llm" },
|
|
|
- { "path": "./packages/core/system-prompt" },
|
|
|
- { "path": "./packages/core/agent" },
|
|
|
- { "path": "./packages/ui/commands" },
|
|
|
- { "path": "./packages/goal/goal" },
|
|
|
- { "path": "./packages/goal/tool-goal" },
|
|
|
- { "path": "./packages/goal/goal-session" },
|
|
|
- { "path": "./packages/goal/command-goal" },
|
|
|
- { "path": "./packages/context/time-context" },
|
|
|
- { "path": "./packages/context/session-reference" },
|
|
|
- { "path": "./packages/ui/user-interaction" },
|
|
|
- { "path": "./packages/ui/user-approval" },
|
|
|
- { "path": "./packages/ui/permission" },
|
|
|
- { "path": "./packages/core/tools" },
|
|
|
- { "path": "./packages/skill/skill" },
|
|
|
- { "path": "./packages/skill/skill-local" },
|
|
|
- { "path": "./packages/skill/tool-skill" },
|
|
|
- { "path": "./packages/ui/tool-ask-user" },
|
|
|
- { "path": "./packages/context/workspace-context" },
|
|
|
- { "path": "./packages/core/agent-loop" },
|
|
|
- { "path": "./packages/llm/llm-retry" },
|
|
|
- { "path": "./packages/examples/agent-spine-demo" },
|
|
|
- { "path": "./packages/examples/cli-demo" },
|
|
|
- { "path": "./packages/bash/bash" },
|
|
|
- { "path": "./packages/pty/pty" },
|
|
|
- { "path": "./packages/pty/pty-local" },
|
|
|
- { "path": "./packages/pty/tool-pty" },
|
|
|
- { "path": "./packages/code-runtime/code-runtime" },
|
|
|
- { "path": "./packages/code-runtime/code-runtime-worker" },
|
|
|
- { "path": "./packages/llm/llm-deepseek" },
|
|
|
- { "path": "./packages/llm/llm-pi-ai" },
|
|
|
- { "path": "./packages/bash/bash-local" },
|
|
|
- { "path": "./packages/sandbox/sandbox" },
|
|
|
- { "path": "./packages/sandbox/sandbox-local" },
|
|
|
- { "path": "./packages/sandbox/sandbox-policy" },
|
|
|
- { "path": "./packages/bash/bash-sandbox" },
|
|
|
- { "path": "./packages/bash/tool-bash" },
|
|
|
- { "path": "./packages/fs/fs" },
|
|
|
- { "path": "./packages/fs/fs-local" },
|
|
|
- { "path": "./packages/fs/fs-policy" },
|
|
|
- { "path": "./packages/fs/fs-sandbox" },
|
|
|
- { "path": "./packages/fs/tool-fs" },
|
|
|
- { "path": "./packages/fs/tool-fs-search" },
|
|
|
- { "path": "./packages/compact/compact" },
|
|
|
- { "path": "./packages/compact/compact-basic" },
|
|
|
- { "path": "./packages/compact/compact-tool-result-prune" },
|
|
|
- { "path": "./packages/web/web" },
|
|
|
- { "path": "./packages/web/web-search-exa" },
|
|
|
- { "path": "./packages/web/web-search-perplexity" },
|
|
|
- { "path": "./packages/web/web-search-deepseek" },
|
|
|
- { "path": "./packages/web/web-fetch-local" },
|
|
|
- { "path": "./packages/web/tool-web" },
|
|
|
- { "path": "./packages/spill/spill" },
|
|
|
- { "path": "./packages/spill/spill-local" },
|
|
|
- { "path": "./packages/spill/spill-policy" },
|
|
|
- { "path": "./packages/timeout/timeout-policy" },
|
|
|
- { "path": "./packages/support/invariants" },
|
|
|
- { "path": "./packages/support/agent-loop-testkit" },
|
|
|
- { "path": "./packages/ui/acp" },
|
|
|
- { "path": "./packages/examples/acp-demo" },
|
|
|
- { "path": "./packages/ui/app-boot" },
|
|
|
- { "path": "./packages/ui/jsonrpc" },
|
|
|
- { "path": "./packages/examples/jsonrpc-demo" },
|
|
|
- { "path": "./packages/ui/tui" },
|
|
|
- { "path": "./packages/examples/tui-demo" },
|
|
|
- { "path": "./packages/support/llm-replay" },
|
|
|
- { "path": "./packages/support/acp-snapshot" },
|
|
|
- { "path": "./packages/support/loader-smoke" },
|
|
|
- { "path": "./packages/subagent/subagent" },
|
|
|
- { "path": "./packages/subagent/tool-subagent" },
|
|
|
- { "path": "./packages/subagent/subagent-inprocess" },
|
|
|
- { "path": "./packages/subagent/subagent-subprocess" },
|
|
|
- { "path": "./packages/subagent/subagent-spawn" },
|
|
|
- { "path": "./packages/subagent/subagent-fork" },
|
|
|
- { "path": "./packages/subagent/subagent-acp" },
|
|
|
- { "path": "./packages/tasks/tasks" },
|
|
|
- { "path": "./packages/tasks/tool-tasks" },
|
|
|
- { "path": "./packages/workflow/workflow" },
|
|
|
- { "path": "./packages/workflow/workflow-workerthread" },
|
|
|
- { "path": "./packages/workflow/tool-workflow" },
|
|
|
- { "path": "./packages/workflow/tool-ralph" },
|
|
|
- { "path": "./packages/todo/tool-todo" },
|
|
|
- { "path": "./packages/plan/plan-mode" },
|
|
|
- { "path": "./packages/guard/repeat-tool-guard" },
|
|
|
- { "path": "./packages/cordis/tool-cordis" },
|
|
|
- { "path": "./packages/hooks/hook-protocol" },
|
|
|
- { "path": "./packages/hooks/hooks-claude" },
|
|
|
- { "path": "./packages/hooks/hooks-codex" },
|
|
|
- { "path": "./packages/mcp/mcp-client" },
|
|
|
- { "path": "./packages/host/apiproxy" },
|
|
|
- { "path": "./packages/host/runtime" },
|
|
|
- { "path": "./packages/host/webserver" },
|
|
|
- { "path": "./packages/sdk/helper" },
|
|
|
- { "path": "./packages/sdk/scripts" },
|
|
|
- { "path": "./packages/sdk/create-sdk" },
|
|
|
- { "path": "./packages/sdk/telemetry" },
|
|
|
- { "path": "./packages/lsp/lsp" },
|
|
|
- { "path": "./packages/lsp/lsp-local" },
|
|
|
- { "path": "./packages/lsp/tool-lsp" },
|
|
|
- { "path": "./apps/cli" }
|
|
|
+ { "path": "./tsconfig.host.json" },
|
|
|
+ { "path": "./tsconfig.client.json" }
|
|
|
]
|
|
|
}
|