From 160d6688dc1bb467aba0c4e39457193478906678 Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Sun, 13 Apr 2025 22:29:11 +0300 Subject: Initial commit --- tsup.config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tsup.config.ts (limited to 'tsup.config.ts') diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..0c86f8a --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,10 @@ +import { defineConfig } from "tsup"; + +export default defineConfig({ + entry: ["src/flatmatter.ts"], + clean: true, + format: ["cjs", "esm"], + dts: true, + treeshake: "smallest", + sourcemap: true, +}); \ No newline at end of file -- cgit v1.2.3