1
0
mirror of synced 2024-11-22 04:26:02 +03:00
mg-bot-api-client-js/rollup.config.js
2020-08-18 17:40:00 +03:00

18 lines
295 B
JavaScript

import babel from '@rollup/plugin-babel';
let pluginOptions = [
babel({
exclude: 'node_modules/**',
}),
];
export default [{
input: 'index.js',
output: {
name: 'main',
file: 'dist/index.js',
format: 'umd',
},
plugins: pluginOptions,
}];