hueitan/angular-validation

View on GitHub
webpack.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  entry: ['./src/module.js'],
  output: {
    filename: 'dist/bundle.js'
  },
  module: {
    loaders: [{
      test: /\.jsx?$/,
      exclude: /(node_modules|bower_components)/,
      loader: 'babel',
      query: {
        presets: ['es2015']
      }
    }]
  }
};