Operand

pro bo? no.

gram: docs

> ./packages/agents/tsup.config.ts

import { defineConfig } from 'tsup';
// Tsup builds the framework-agnostic + React entries. Vue SFCs are built by
// `vite.config.ts` because tsup/esbuild can't compile `.vue` files. The
// dedicated `tsconfig.tsup.json` excludes vue/* so the d.ts pass doesn't
// trip on the SFC shim.
export default defineConfig({
entry: {
index: 'src/index.ts',
bridge: 'src/bridge.ts',
server: 'src/server.ts',
react: 'src/react.ts',
mcp: 'src/mcp/index.ts',
'ai-sdk/server': 'src/ai-sdk/server.ts',
'ai-sdk/react': 'src/ai-sdk/react.ts',
},
format: ['cjs', 'esm'],
dts: { resolve: true },
tsconfig: 'tsconfig.tsup.json',
splitting: true,
sourcemap: false,
clean: true,
treeshake: {
preset: 'smallest',
},
minify: true,
noExternal: ['@eigenpal/docx-editor-core'],
external: ['prosemirror-model', 'prosemirror-state', 'prosemirror-view', 'react', 'ai'],
});