1
0
mirror of synced 2024-11-23 13:06:01 +03:00
mg-bot-api-client-js/rollup.config.js

18 lines
295 B
JavaScript
Raw Normal View History

2020-08-18 17:40:00 +03:00
import babel from '@rollup/plugin-babel';
2019-03-01 13:46:30 +03:00
let pluginOptions = [
babel({
exclude: 'node_modules/**',
}),
];
export default [{
input: 'index.js',
output: {
name: 'main',
file: 'dist/index.js',
format: 'umd',
},
plugins: pluginOptions,
2020-08-18 17:40:00 +03:00
}];