morphik-core/ee/ui-component/tsup.config.ts
2025-04-21 14:51:08 -07:00

20 lines
342 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
splitting: false,
sourcemap: true,
clean: true,
tsconfig: './tsconfig.lib.json',
external: [
'react',
'react-dom',
'next',
'next/image',
'next/link',
'@radix-ui/*',
],
});