summaryrefslogtreecommitdiff
path: root/tsup.config.ts
blob: f845191b06b69328ae992b9b3966af2e616c0160 (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: ["esm", "cjs"],
  dts: true,
  treeshake: "smallest",
  sourcemap: true,
});