plane/packages/editor/tsup.config.ts
2023-09-19 13:42:54 +05:30

12 lines
244 B
TypeScript

import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/index.ts"],
format: ["cjs", "esm"],
dts: true,
clean: true,
external: ["react"],
injectStyle: true,
...options,
}));