This commit is contained in:
gcch 2025-09-26 10:17:32 +02:00
commit ae566b5179
14 changed files with 766 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: ["node24"],
treeshake: true,
});