feat: Init package

This commit is contained in:
2024-06-19 11:55:35 +07:00
parent 4f1539e557
commit a4242badf8
7 changed files with 2610 additions and 0 deletions

10
tsup.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "tsup";
export default defineConfig({
target: "es2020",
format: ["cjs", "esm"],
splitting: false,
sourcemap: true,
clean: true,
dts: true,
});