UNPKG

js-broadcast-channel

Version:
16 lines (15 loc) 329 B
import { defineConfig } from 'tsup' export default defineConfig({ entry: ['src/index.ts'], format: ['esm'], dts: true, minify: true, treeshake: true, target: 'es2020', clean: true, esbuildOptions: (options, { format }) => { if (format === 'esm') { options.mangleProps = /^_/ } } })