2
0
Files
bot/packages/deprecated/bot-engine/tsup.config.js
2023-03-15 08:35:16 +01:00

14 lines
271 B
JavaScript

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