UNPKG

lexical-ai-plugin

Version:

This plugin is built to be used with Cloudflare Workers. In order to use this plugin, deploy this [Code](https://github.com/akadotsh/lexical-ai-worker) to Cloudflare.

15 lines (13 loc) 278 B
import { defineConfig } from "tsup"; export default defineConfig({ entry: ["./src/index.tsx"], treeshake: true, sourcemap: "inline", minify: true, clean: true, dts: true, splitting: false, format: ["cjs", "esm"], external: ["react"], injectStyle: true, });