Fix root TypeScript solution config

This commit is contained in:
Dotta
2026-03-09 14:09:30 -05:00
parent 469bfe3953
commit 5dd1e6335a
13 changed files with 45 additions and 27 deletions

View File

@@ -1,18 +1,18 @@
{
"compilerOptions": {
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true
}
"extends": "./tsconfig.base.json",
"files": [],
"references": [
{ "path": "./packages/adapter-utils" },
{ "path": "./packages/shared" },
{ "path": "./packages/db" },
{ "path": "./packages/adapters/claude-local" },
{ "path": "./packages/adapters/codex-local" },
{ "path": "./packages/adapters/cursor-local" },
{ "path": "./packages/adapters/openclaw-gateway" },
{ "path": "./packages/adapters/opencode-local" },
{ "path": "./packages/adapters/pi-local" },
{ "path": "./server" },
{ "path": "./ui" },
{ "path": "./cli" }
]
}