14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
|
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,
|
||
|
}));
|