2026-08-04 49c9eff61882f1f7d519397ccfdd90cdd8735cb8
1
2
3
4
5
6
7
8
9
10
import { defineConfig } from 'tsdown';
 
export default defineConfig({
  clean: false,
  deps: {
    skipNodeModulesBundle: true,
  },
  entry: ['src/index.ts'],
  format: ['esm'],
});