0.4.1 ā€¢ Published 7 years ago

@webpack-blocks/babel6 v0.4.1

Weekly downloads
156
License
MIT
Repository
github
Last release
7 years ago

Webpack blocks - Babel 6+

JavaScript Style Guide NPM Version

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

šŸ‘‰ Main Documentation

Released under the terms of the MIT license.