UNPKG

200 BJavaScriptView Raw
1import { defineConfig } from 'tsup';
2
3export default defineConfig((options) => ({
4 entry: ['src/index.ts'],
5 sourcemap: options.watch,
6 minify: !options.watch,
7 dts: true,
8 format: ['cjs'],
9}));