agent-ecosystem/tsconfig.node.json
777genius aed08113e6 feat(agent-graph): integrate stable slot layout for improved node positioning and interaction
- Added stable slot layout support in various components, enhancing the layout and interaction of nodes.
- Updated TypeScript configuration to include new paths for the agent-graph package.
- Refactored layout logic in activity lanes and kanban to accommodate stable slot assignments.
- Enhanced GraphView and GraphControls to support sidebar visibility toggling and owner slot drop handling.
- Introduced new types for layout management in GraphDataPort and related files.
- Updated README to include stable slot layout documentation.
2026-04-15 16:18:11 +03:00

32 lines
824 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@claude-teams/agent-graph": ["./packages/agent-graph/src/index.ts"],
"@features/*": ["./src/features/*"],
"@main/*": ["./src/main/*"],
"@preload/*": ["./src/preload/*"],
"@shared/*": ["./src/shared/*"]
},
"types": ["node"]
},
"include": [
"electron.vite.config.ts",
"src/main/**/*",
"src/preload/**/*",
"src/features/**/contracts/**/*",
"src/features/**/core/**/*",
"src/features/**/main/**/*",
"src/features/**/preload/**/*"
]
}