bot/tsup.config.ts

10 lines
187 B
TypeScript
Raw Normal View History

2023-02-10 12:09:24 +00:00
import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
format: ['cjs'],
entry: ['src/index.ts', 'src/Commands/*.ts'],
minify: true,
splitting: true,
})