import { defineConfig, type Options } from "tsup"; export default defineConfig((options: Options) => ({ entry: ["src/**/*"], clean: true, format: ["cjs", "esm"], ...options, }));