Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / webpack_es6_2 / webpack.config.js
diff --git a/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6_2/webpack.config.js b/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6_2/webpack.config.js
new file mode 100644 (file)
index 0000000..3caf2be
--- /dev/null
@@ -0,0 +1,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' }
+    ]
+  }
+};