This commit is contained in:
gcch 2026-03-14 13:39:45 +01:00
commit 91d4573bff
14 changed files with 442 additions and 217 deletions

14
cfg/tsdown.config.ts Normal file
View file

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