chore(cli): add tsup

This commit is contained in:
Mukund Shah 2023-08-26 22:25:33 +05:45
parent 50b38e450e
commit 3a0d2e62f1
No known key found for this signature in database

View File

@ -0,0 +1,11 @@
import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
dts: true,
entry: ['src/index.ts'],
format: ['esm'],
sourcemap: true,
target: 'esnext',
outDir: 'dist',
})