10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
|
import { defineConfig } from 'tsup'
|
||
|
|
||
|
export default defineConfig({
|
||
|
clean: true,
|
||
|
format: ['cjs'],
|
||
|
entry: ['src/index.ts', 'src/Commands/*.ts'],
|
||
|
minify: true,
|
||
|
splitting: true,
|
||
|
})
|