forked from github/plane
f361cd045e
* image can't be inserted inside table Now we've diabled image icon from showing up if the cursor is inside a table node or if a table cell is selected * added drag drop support for document editor * fixed missing dependencies
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,
|
|
}));
|