mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
These e2e boot a real harness and read Host services, so they type-check in the Host aggregate; importing a Client package there pulls its whole project — and everything it references — into the Host build phase, where a Client project waiting on generated artifacts cannot compile. The welcome-notice constants are mirrored in the scaffold instead, which lets apps/cli drop the Client project references that only served as their owner map.
76 lines
1.4 KiB
JSON
76 lines
1.4 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "lib/types"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../vendor/cordis"
|
|
},
|
|
{
|
|
"path": "../../vendor/loader"
|
|
},
|
|
{
|
|
"path": "../../vendor/include"
|
|
},
|
|
{
|
|
"path": "../../packages/boot/app-boot"
|
|
},
|
|
{
|
|
"path": "../../packages/boot/cmdline"
|
|
},
|
|
{
|
|
"path": "../../packages/bundle/base"
|
|
},
|
|
{
|
|
"path": "../../packages/bundle/headless"
|
|
},
|
|
{
|
|
"path": "../../packages/bundle/web-app"
|
|
},
|
|
{
|
|
"path": "../../packages/host/apiproxy"
|
|
},
|
|
{
|
|
"path": "../../packages/host/webserver"
|
|
},
|
|
{
|
|
"path": "../../packages/host/frontend-static"
|
|
},
|
|
{
|
|
"path": "../../packages/core/session"
|
|
},
|
|
{
|
|
"path": "../../packages/core/system-prompt"
|
|
},
|
|
{
|
|
"path": "../../packages/core/tools"
|
|
},
|
|
{
|
|
"path": "../../packages/util/environment"
|
|
},
|
|
{
|
|
"path": "../../packages/util/paths"
|
|
},
|
|
{
|
|
"path": "../../packages/mcp/mcp-client"
|
|
},
|
|
{
|
|
"path": "../../packages/support/loader-smoke"
|
|
},
|
|
{
|
|
"path": "../../packages/session-query/session-query-sqlite"
|
|
},
|
|
{
|
|
"path": "../../packages/bash/bash-env"
|
|
},
|
|
{
|
|
"path": "../../packages/bash/tool-bash"
|
|
}
|
|
]
|
|
}
|