2
0
Files
bot/packages/deprecated/bot-engine/tsup.config.js

13 lines
258 B
JavaScript
Raw Normal View History

2022-11-21 11:12:43 +01:00
import { defineConfig } from 'tsup'
export default defineConfig((options) => ({
entry: ['src/index.ts'],
sourcemap: true,
minify: !options.watch,
format: ['esm', 'cjs'],
loader: {
'.css': 'text',
},
2023-02-10 15:06:02 +01:00
external: ['@paralleldrive/cuid2'],
}))