2
0
Files
bot/packages/bot-engine/tsup.config.js
Baptiste Arnaud 51f76700b2 📦 Update cuid to cuid2
2023-02-10 15:06:02 +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'],
}))