Tether/use-tether/tsup.config.ts

13 lines
248 B
TypeScript
Raw Normal View History

2024-09-09 17:28:31 -07:00
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["./src/index.ts"],
format: ["cjs", "esm"],
dts: true,
target: "node20",
sourcemap: true,
minify: true,
publicDir: "build",
clean: true,
});