agent-ecosystem/tsconfig.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

27 lines
793 B
JSON

{
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"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/*"],
"@renderer/*": ["./src/renderer/*"],
"@preload/*": ["./src/preload/*"],
"@shared/*": ["./src/shared/*"]
},
"types": ["node", "vitest/globals"]
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules", "dist", "dist-electron"]
}