- Reorganized directory structure: pkg/ -> packages/, app/ -> apps/ - Added @hanzo/ai package with Vercel AI SDK patterns - Implemented AgentKit concepts (agents, networks, state, routers) - Added MCP (Model Context Protocol) integration - Integrated telemetry with Hanzo Cloud observability - Fixed all failing tests across all packages - Updated Makefile with comprehensive commands for development and release - Added support for Gemini, Codex, and Grok CLI tools - Fixed import paths and build configuration for new structure
14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
index: 'src/index.ts',
|
|
'server/index': 'src/server/index.ts',
|
|
},
|
|
format: ['cjs', 'esm'],
|
|
dts: false, // Disable type generation for now
|
|
splitting: false,
|
|
sourcemap: true,
|
|
clean: true,
|
|
external: ['react'],
|
|
}) |