daneryl/batarange

View on GitHub
tools/webpack.config.base.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  module: {
    loaders: [{
      test: /\.js$/,
      exclude: /(bower_components|node_modules)/,
      loader: 'babel',
    }],
  },
  output: {
    libraryTarget: 'umd',
    library: 'calculator',
  },
  resolve: {
    extensions: [
      '',
      '.js',
    ],
  },
};