mirror of
https://github.com/theoludwig/react-component-form.git
synced 2024-11-09 22:08:47 +01:00
686b5643b3
BREAKING CHANGE: This package is now pure ESM
13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
import { defineConfig } from 'tsup'
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.tsx'],
|
|
sourcemap: true,
|
|
clean: true,
|
|
platform: 'browser',
|
|
target: 'esnext',
|
|
format: ['esm'],
|
|
minify: true,
|
|
dts: true
|
|
})
|