add husky pre commit hook

This commit is contained in:
Aman Varshney
2025-02-11 11:32:45 +05:30
parent e02ee56d74
commit 96f65a2a3f
8 changed files with 216 additions and 137 deletions

View File

@@ -1,14 +1,14 @@
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm"],
clean: true,
dts: true,
shims: true,
splitting: false,
outDir: "dist",
banner: {
js: "#!/usr/bin/env node",
},
entry: ["src/index.ts"],
format: ["esm"],
clean: true,
dts: true,
shims: true,
splitting: false,
outDir: "dist",
banner: {
js: "#!/usr/bin/env node",
},
});