adding the dcae dt code

Adding DCAE-dt code

Change-Id: Id6b779db9d24e10825fb97ad5fd46f41e65e6738
Issue-ID: SDC-1614
Signed-off-by: Eran (ev672n), Vosk <ev672n@att.com>
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000..aeecbdb
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,31 @@
+'use strict';
+// var CompressionPlugin = require('compression-webpack-plugin');
+
+module.exports = {
+    devtool: 'source-map',
+    entry: {
+        js: ['./.tmp/concat/scripts/scripts.js', './.tmp_imploded/styles/main.css']
+    },
+    output: {
+        path: __dirname + '/dist/imploded',
+        filename: 'dcae-bundle.js'
+    },
+    // plugins: [
+    //     new CompressionPlugin({
+    //         asset: "[path].gz[query]",
+    //         algorithm: "gzip",
+    //         test: /\.js$|\.css$|\.html$/
+    //     })
+    // ],
+    module: {
+        loaders: [
+            { test: /\.(js|jsx)$/, loaders: ['babel-loader'], exclude: /node_modules/ },
+
+            // required for font icons
+            { test: /\.(woff|woff2)(\?.*)?$/, loader: 'url-loader?limit=16384&mimetype=application/font-woff' },
+            { test: /\.(ttf|eot|otf)(\?.*)?$/, loader: 'file-loader' },
+            { test: /\.(png|jpg|svg)(\?.*)?$/, loader: 'url-loader?limit=16384' },
+            { test: /\.css$/, loader: "style-loader!css-loader" }
+        ]
+    }
+};