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