1
0
mirror of synced 2024-11-21 20:16:03 +03:00
mg-bot-api-client-js/rollup.config.js
Akolzin Dmitry e71a9ab7e3 JSDoc
2019-03-06 14:03:41 +03:00

17 lines
293 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,
}];