import { defineConfig } from 'tsup';

export default defineConfig({
  entry: ['./src/index.ts'],
  splitting: false,
  clean: true,
  format: ['cjs', 'esm'],
  minifyWhitespace: true,
  dts: true,
  tsconfig: './tsconfig.json',
});
