blob: 716b7a5ac4d72e82c4cab3e72989505d5a456e53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/**/*.ts"],
treeshake: true,
splitting: true,
format: ["esm", "cjs"],
dts: true,
minify: true,
clean: true,
...options,
}));
|