UNPKG

304 BJavaScriptView Raw
1import babel from 'rollup-plugin-babel'
2import json from 'rollup-plugin-json'
3export default {
4
5 input: 'src/index.js',
6 output: {
7 file: 'dist/index.js',
8 format: 'cjs'
9 },
10 plugins: [
11 json(),
12 babel({
13 plugins: ['external-helpers'],
14 exclude: 'node_modules/**',
15 })
16 ]
17}