bot/tsup.config.ts
2023-01-28 18:15:09 +09:00

9 lines
166 B
TypeScript

import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
format: ['cjs'],
entry: ['src/index.ts'],
minify: true,
splitting: true,
})