๐Ÿ“ฆ nrjdalal / gitpick

๐Ÿ“„ tsup.config.ts ยท 10 lines
1
2
3
4
5
6
7
8
9
10import { defineConfig } from "tsup"

export default defineConfig({
  clean: true,
  entry: ["bin/index.ts"],
  format: ["esm"],
  minify: true,
  outDir: "dist",
})