connection binds the web transport: it injects httpServer + apiProxy and registers toFetchHandler(ctx.apiProxy) under the /api prefix (the node:http to fetch bridge moves in from the webserver, keeping the res-close disconnect detection and drain/close backpressure waits). hmr owns dev reload: a stat-poll watch per graph row driven by clientModuleHost.onGraphChanged, rebuilt(id) on content change, and the /plugins/events SSE route (GET/HEAD guarded); frame types are single-sourced in events.ts shared by both halves.
41 lines
642 B
JSON
41 lines
642 B
JSON
{
|
|
"extends": "../../../tsconfig.base.client.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "lib/types",
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../llm/llm"
|
|
},
|
|
{
|
|
"path": "../../core/session"
|
|
},
|
|
{
|
|
"path": "../../util/brand"
|
|
},
|
|
{
|
|
"path": "../../host/apiproxy"
|
|
},
|
|
{
|
|
"path": "../../host/webserver"
|
|
},
|
|
{
|
|
"path": "../../ui/user-approval"
|
|
},
|
|
{
|
|
"path": "../../ui/user-interaction"
|
|
},
|
|
{
|
|
"path": "../../support/invariants"
|
|
}
|
|
],
|
|
"exclude": [
|
|
"**/*.legacy.*"
|
|
]
|
|
}
|