2
0
Files
bot/packages/bot-engine/tsup.config.js
Baptiste Arnaud dcec1f0a5c (googleSheets) Advanced get filtering
Allows you to select rows based on advanced conditions / comparisons
2022-12-06 11:12:51 +01:00

14 lines
255 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: ['cuid'],
}))