Add files via upload

This commit is contained in:
2024-05-01 19:20:51 +02:00
committed by GitHub
parent 3968fd5e35
commit 08b3496b97
12 changed files with 3548 additions and 2 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,
});