blob: 27be5a773ffba5c74b82a2b7b5b70629f5e2dff4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { defineConfig } from "tsup";
const isProduction = process.env.NODE_ENV === "production";
export default defineConfig({
clean: true,
dts: true,
entry: ["src/index.ts"],
format: ["cjs", "esm"],
minify: isProduction,
sourcemap: true,
});
|