mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-07-21 18:33:22 -07:00
16 lines
283 B
TypeScript
16 lines
283 B
TypeScript
|
|
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',
|
||
|
|
},
|
||
|
|
});
|