initial commit

This commit is contained in:
2026-04-26 20:28:05 +02:00
parent 5542f2cd63
commit b522fd3127
22 changed files with 2537 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from "tsdown";
export default defineConfig({
fixedExtension: false,
entry: ["./src/**/*.(ts|tsx)"],
format: "esm",
exports: true,
dts: true,
});