This commit is contained in:
gcch 2025-09-28 11:01:58 +02:00
commit 32cf1563f7
13 changed files with 651 additions and 0 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,
});