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

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