bot/tsup.config.ts
2024-06-24 00:48:44 +09:00

11 lines
276 B
TypeScript

import { defineConfig } from 'tsup'
const sourcemap = process.env.NODE_ENV === 'development' ? true : false
export default defineConfig({
clean: true,
format: ['cjs'],
entry: ['src/index.ts', 'src/commands/*.ts', 'src/listeners/*.ts'],
minify: true,
sourcemap,
})