- One Node.js process with Claude Agent SDK + WebSocket to Tracker - Direct filesystem access (code, git, bash) - Test mode (--test): interactive CLI without Tracker - Tracker mode: WS connection, chat mentions, task handling - Persistent sessions via Agent SDK - Removed: Docker, IPC files, host/container split, Python runner
15 lines
288 B
JSON
15 lines
288 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src"]
|
|
}
|