* refactor: lite and rich text editors * refactor: document editor migration * fix: add missing css import * refactor: issue embed widget splitting * chore: remove extensions folder from ee * chore: update web ee folder structure * fix: build errors --------- Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
11 lines
245 B
TypeScript
11 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,
|
|
}));
|