2
0
Files
bot/packages/deprecated/bot-engine/tsup.config.js
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

13 lines
258 B
JavaScript

import { defineConfig } from 'tsup'
export default defineConfig((options) => ({
entry: ['src/index.ts'],
sourcemap: true,
minify: !options.watch,
format: ['esm', 'cjs'],
loader: {
'.css': 'text',
},
external: ['@paralleldrive/cuid2'],
}))