UNPKG

@laiyon/create-wasapi

Version:

CLI to create WhatsApp bot projects with Wasapi and BuilderBot

14 lines (12 loc) 289 B
import typescript from 'rollup-plugin-typescript2' export default { input: 'src/app.ts', output: { file: 'dist/app.js', format: 'esm', }, onwarn: (warning) => { if (warning.code === 'UNRESOLVED_IMPORT') return }, plugins: [typescript()], }