- 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.
27 lines
793 B
JSON
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"]
|
|
}
|