1.0.1 • Published 6 years ago

build-tools-webpack-babel v1.0.1

Weekly downloads
11
License
MIT
Repository
github
Last release
6 years ago

npm version

build-tools-webpack-babel

Set of dependencies for running webpack with babel.

Install

npm install --save-dev build-tools-webpack-babel

Usage

In webpack.config.js:

const { rules } = require('build-tools-webpack-babel');

module.exports = {
  module: {
    rules
  }
};

or combined with other rules/loaders:

const { rules: babelRules } = require('build-tools-webpack-babel');

module.exports = {
  module: {
    rules: [
      ...babelRules,
      ... // other loaders
    ]
  }
}

Links