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

17 lines
293 B
JavaScript
Raw Normal View History

2019-03-01 13:46:30 +03:00
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,
}];