lbryinc/rollup.config.js

28 lines
524 B
JavaScript
Raw Normal View History

2019-04-03 23:34:07 +02:00
import babel from 'rollup-plugin-babel';
import flow from 'rollup-plugin-flow';
import includePaths from 'rollup-plugin-includepaths';
let includePathOptions = {
include: {},
paths: ['src'],
external: [],
extensions: ['.js']
};
export default {
input: 'src/index.js',
output: {
file: 'dist/bundle.es.js',
format: 'cjs'
},
plugins: [
flow({ all: true }),
includePaths(includePathOptions),
babel({
babelrc: false,
presets: [],
}),
],
external: ['lbry-redux']
}