1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { defineConfig } from "tsdown" export default defineConfig({ entry: ["src/index.ts"], format: "esm", sourcemap: true, target: "es2020", tsconfig: "./tsconfig.json", clean: true, minify: true, dts: { sourcemap: true, }, exports: true, })