@webpack-blocks/babel6
v0.4.1
Published
Webpack block for babel 6+.
Downloads
3,244
Readme
Webpack blocks - Babel 6+
This is the babel6
block providing Babel (Version 6+) configuration using the babel-loader.
Usage
const { createConfig } = require('@webpack-blocks/webpack')
const babel = require('@webpack-blocks/babel6')
module.exports = createConfig([
babel(/* options */)
])
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.
Webpack blocks
Check out the
Released under the terms of the MIT license.