initial commit

This commit is contained in:
2026-05-12 19:44:00 +02:00
parent d4d30abf2b
commit 64b284c834
8 changed files with 659 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "tsdown";
export default defineConfig({
entry: ["./src/index.ts"],
dts: true,
exports: true,
target: "ESNext",
deps: {
neverBundle: ["bun", "bun:test"],
},
});