import { defineConfig } from 'tsup'; export default defineConfig({ entry: { index: 'src/index.ts', 'dspy/index': 'src/dspy/index.ts' }, format: ['esm', 'cjs'], dts: true, clean: true, splitting: false, sourcemap: true, minify: false, target: 'es2022', outDir: 'dist', tsconfig: './tsconfig.json' });