From 4f7a69d12805d50f4f1e1f7354f7679c085a3db3 Mon Sep 17 00:00:00 2001 From: Edoardo Scibona <12040076+velut@users.noreply.github.com> Date: Tue, 2 Jul 2024 20:48:56 +0200 Subject: [PATCH] build: setup tsup --- tsup.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tsup.config.ts diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 0000000..1930a24 --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,8 @@ +import { defineConfig } from "tsup"; + +export default defineConfig({ + entry: ["src/index.ts"], + format: ["esm"], + dts: true, + clean: true, +});