blob: 18b0666b270a3e8bd4d68b3b1e4bb74482fdf4df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/cli.ts"],
format: ["cjs"],
clean: true,
minify: true,
...options,
}));
|