blob: bbda8cb604ddc96d78fc7fba617abc6681b1211f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["lib/index.ts"],
clean: true,
minify: true,
...options,
}));
|