chore(build): 🔧 Update tsup.config.ts to refine bundle configurations (entry points, plugins, or output formats)

This commit is contained in:
Lilith 2026-01-21 12:40:52 -08:00
parent ae77fe3445
commit 48da962d95

11
tsup.config.ts Normal file
View file

@ -0,0 +1,11 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
dts: true,
clean: true,
sourcemap: true,
treeshake: true,
target: 'es2022',
});