bot/tsup.config.ts
Migan178 13762b85f6
feat: Manually load pieces
reason: Some environment can't load pieces.
2024-08-03 19:21:06 +09:00

11 lines
233 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'],
minify: true,
sourcemap,
})