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

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