Add unsend campaign feature (#45)
* Add unsend email editor Add email editor Add more email editor Add renderer partial Add more marketing email features * Add more campaign feature * Add variables * Getting there * campaign is there mfs * Add migration
This commit is contained in:
17
packages/email-editor/tsup.config.ts
Normal file
17
packages/email-editor/tsup.config.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import { defineConfig, Options } from "tsup";
|
||||
|
||||
// eslint-disable-next-line import/no-default-export
|
||||
export default defineConfig((options: Options) => ({
|
||||
entry: ["src/index.ts"],
|
||||
format: ["esm", "cjs"],
|
||||
banner: {
|
||||
js: "'use client'",
|
||||
},
|
||||
dts: true,
|
||||
minify: true,
|
||||
clean: true,
|
||||
external: ["react", "react-dom"],
|
||||
injectStyle: true,
|
||||
...options,
|
||||
}));
|
Reference in New Issue
Block a user