This repository has been archived on 2024-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
react-component-form/tsup.config.js

14 lines
274 B
JavaScript
Raw Normal View History

import { defineConfig } from 'tsup'
export default defineConfig({
2023-05-13 18:24:44 +02:00
entry: ['src/**/*.{ts,tsx}', '!src/**/*.test.{ts,tsx}'],
sourcemap: false,
clean: true,
platform: 'browser',
target: 'esnext',
format: ['esm'],
2023-05-13 18:24:44 +02:00
minify: false,
outDir: 'build',
dts: true
})