mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
const commonjs = require('@rollup/plugin-commonjs')
|
|
|
|
module.exports = {
|
|
input: 'index.js',
|
|
output: {
|
|
file: 'lib/core/bundle.core.cjs',
|
|
format: 'cjs',
|
|
},
|
|
plugins: [commonjs()],
|
|
}
|