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