Add files via upload

This commit is contained in:
2024-07-07 18:48:34 +02:00
committed by GitHub
parent 4ea7a9bf86
commit 5220bf4af4
18 changed files with 3101 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,
});