File size: 191 Bytes
e732311
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { defineConfig, type Options } from "tsup";

export default defineConfig((options: Options) => ({
  entryPoints: ["src/index.ts"],
  clean: true,
  format: ["cjs"],
  ...options,
}));