Files
Hanzo Dev 36dd3959fb feat: integrate ACI and MCP TypeScript packages into monorepo
- Add @hanzo/aci - Agent Computer Interface for cross-platform automation
- Add @hanzo/mcp - Model Context Protocol server with 20+ tools
- MCP now uses @hanzo/ai for AI tools (think, critic, consensus, agent)
- LanceDB integration for multimodal vector storage
- Complete feature parity with Python MCP implementation
- Remove old dev package structure
2025-07-24 03:50:19 -05:00

21 lines
516 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}