This commit is contained in:
gcch 2025-09-26 16:17:57 +02:00
commit 360d7e45e6
11 changed files with 521 additions and 13 deletions

12
tsdown.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from "tsdown";
export default defineConfig({
clean: true,
dts: true,
entry: ["./index.ts"],
minify: true,
platform: "node",
sourcemap: false,
target: "esnext",
treeshake: true,
});