summaryrefslogtreecommitdiff
path: root/tsup.config.ts
blob: 13e76f229d8fa7607568d301186f779b2eb40a1d (plain)
1
2
3
4
5
6
7
8
9
10
import { defineConfig } from "tsup";

export default defineConfig({
  entry: ["src/eventx.ts"],
  clean: true,
  format: ["esm", "cjs"],
  dts: true,
  treeshake: "smallest",
  sourcemap: true,
});