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

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