14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['cjs'],
|
|
dts: false, // Disable DTS generation to avoid type issues
|
|
splitting: false,
|
|
sourcemap: true,
|
|
clean: true,
|
|
outDir: 'dist',
|
|
banner: {
|
|
js: '#!/usr/bin/env node',
|
|
},
|
|
});
|