1import { defineConfig } from 'tsup'2 3export default defineConfig({4 entry: ['index.ts', 'src/*.ts'],5 outDir: 'build',6 clean: true,7 target: 'es2020',8 format: ['cjs', 'esm'],9 tsconfig: 'tsconfig.json',10 dts: true,11 sourcemap: true,12})