summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6/webpack.config.js
blob: 3caf2bef91f900c492d116846eeb6fad3bef1a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
  entry: './app.js',
  output: {
    filename: 'bundle.js'
  },
  resolve: {
    alias: {
      'angular-cache': '../../dist/angular-cache.js'
    }
  },
  module: {
    loaders: [
      { test: /(.+)\.js$/, loader: 'babel-loader?blacklist=useStrict' }
    ]
  }
};