16 lines
281 B
TypeScript
16 lines
281 B
TypeScript
import { defineConfig, Options } from "tsup";
|
|
|
|
export default defineConfig((options: Options) => ({
|
|
entry: {
|
|
index: "src/index.tsx",
|
|
},
|
|
banner: {
|
|
js: "'use client'",
|
|
},
|
|
clean: true,
|
|
format: ["cjs", "esm"],
|
|
external: ["react"],
|
|
dts: true,
|
|
...options,
|
|
}));
|