import { defineConfig } from "tsup" export default defineConfig({ entry: ["./src/index.ts"], tsconfig: "tsconfig.build.json", format: ["cjs", "esm"], dts: true, clean: true, })