forked from github/plane
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
|
import { defineConfig, Options } from "tsup";
|
||
|
|
||
|
export default defineConfig((options: Options) => ({
|
||
|
entry: ["src/index.ts"],
|
||
|
format: ["cjs", "esm"],
|
||
|
dts: true,
|
||
|
clean: false,
|
||
|
external: ["react"],
|
||
|
injectStyle: true,
|
||
|
...options,
|
||
|
}));
|