1import { defineConfig } from 'tsdown';
2
3export default defineConfig((options) => ({
4 clean: true,
5 dts: true,
6 entry: ['src/index.ts', 'src/plugin.ts'],
7 format: ['cjs', 'esm'],
8 minify: !options.watch,
9 shims: false,
10 sourcemap: true,
11 treeshake: true,
12}));