blob: 8dd243907722b9ce169cbe657ab34d62a7b0e152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "rootDir": "src", "outDir": "dist", "composite": true },
"include": ["src/**/*.ts"],
"references": [
{ "path": "../conversation-store" },
{ "path": "../credential-store" },
{ "path": "../kernel" },
{ "path": "../lsp" },
{ "path": "../session-orchestrator" },
{ "path": "../system-prompt" },
{ "path": "../throughput-store" },
{ "path": "../transport-contract" }
]
}
|