2
0
Files
bot/packages/react/tsup.config.js
Baptiste Arnaud 21f1c7a17e Add Bubble and Popup in embed lib v2
Closes #214
2023-01-09 14:51:36 +01:00

11 lines
233 B
JavaScript

import { defineConfig } from 'tsup'
export default defineConfig((options) => ({
entry: ['src/index.ts'],
sourcemap: options.watch,
minify: !options.watch,
dts: true,
format: ['esm', 'cjs'],
external: ['db', 'cuid'],
}))