1import { defineConfig } from 'tsup'
2
3export default defineConfig({
4 entry: ['src/index.ts'],
5 format: ['esm', 'cjs'],
6 dts: true,
7 sourcemap: true,
8 clean: true,
9 external: ['react', 'react-dom', '@polyrender/core'],
10 esbuildOptions(options) {
11 options.jsx = 'automatic'
12 },
13})