Files
plan2code/plan2code-bot/tsup.config.ts
T

16 lines
283 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from 'tsup';
export default defineConfig({
entry: {
'bin/plan2code-bot': 'src/bin/plan2code-bot.ts',
index: 'src/index.ts',
},
format: ['esm'],
dts: false,
clean: true,
sourcemap: true,
banner: {
js: '#!/usr/bin/env node',
},
});