bot/tsup.config.ts
2023-01-23 22:53:02 +09:00

8 lines
147 B
TypeScript

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