summaryrefslogtreecommitdiff
path: root/tsup.config.ts
blob: 0c86f8abaaf7f83bfc49cb6dddeb56947892d85e (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,
});