logo image
EN

TSUP

Bundle your TypeScript library with no config, powered by esbuild

tsup.config.ts

import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['index.ts', 'src/*.ts'],
outDir: 'build',
clean: true,
target: 'es2020',
format: ['cjs', 'esm'],
tsconfig: 'tsconfig.json',
dts: true,
sourcemap: true,
})

참고