mdb-ui-kit/rollup.config.js

14 lines
263 B
JavaScript
Raw Normal View History

2017-08-11 17:59:31 +03:00
import fs from 'fs';
import babel from 'rollup-plugin-babel';
const babelOptions = JSON.parse(fs.readFileSync('./.babelrc'));
export default {
2017-10-20 16:52:35 +03:00
output: {
format: 'iife',
},
2017-08-11 17:59:31 +03:00
plugins: [
babel(Object.assign(babelOptions, { babelrc: false })),
],
};