This commit is contained in:
Lechner Julian - FrauJulian
2025-07-07 17:36:48 +02:00
parent 099d6a1367
commit 1104dde075
14 changed files with 3882 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "tsup";
export default defineConfig({
format: [ "cjs", "esm" ],
entry: ["./src/index.ts"],
dts: true,
shims: true,
skipNodeModulesBundle: true,
clean: true,
});