Webpack block for babel 6+.


This is the babel6 block providing Babel (Version 6+) configuration using the babel-loader.
``js
const { createConfig } = require('@webpack-blocks/webpack')
const babel = require('@webpack-blocks/babel6')
module.exports = createConfig([
babel(/ options /)
])
`
#### exclude (optional)
Regular expression, string or function describing which files/directories to exclude from the babeling. Defaults to /\/node_modules\// regex, like all JS loaders.
#### include (optional)
Regular expression, string or function used to white-list which files/directories should be babeled. By default exclude is set only.
#### plugins (optional)
Array of Babel plugins to use. Babel will read them from .babelrc or package.json if omitted.
#### presets (optional)
Array of Babel presets to use. Babel will read them from .babelrc or package.json` if omitted.
Check out the
š Main Documentation
Released under the terms of the MIT license.