mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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,
|
||
|
}));
|