bot/tsup.config.ts
2023-02-08 22:17:06 +09:00

7 lines
152 B
TypeScript

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