mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
- Set up Electron + React + TypeScript + Tailwind CSS v4 - Implement Conductor for ACP agent communication - Add AgentProcess for subprocess lifecycle management - Create CLI test command (pnpm test:acp) with --cwd and --log options - Support multiple agents: opencode, codex, gemini Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
347 B
JSON
18 lines
347 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": [
|
|
"electron.vite.config.*",
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/shared/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"types": ["electron-vite/node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["src/shared/*"]
|
|
}
|
|
}
|
|
}
|