[AAI] Remove Robby Maharajh & Harish Kajur as committers
[aai/sparky-fe.git] / webpack.config.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 'use strict';
22
23 var webpack = require('webpack');
24 var path = require('path');
25
26 module.exports = {
27   devtool: 'source-map',
28   cache: 'true',
29   entry: {
30     bundle: [
31       'app/main.app.jsx',
32       'webpack/hot/only-dev-server'
33     ]
34   },
35   output: {
36     path: path.join(__dirname, 'dist'),
37     publicPath: ``,
38     filename: '[name].js',
39     sourceMapFilename: '[name].js.map'
40   },
41   resolve: {
42     root: [path.resolve('.')],
43     alias: {
44       app: 'src/app',
45       'generic-components': 'src/generic-components',
46       utils: 'src/utils',
47       images: 'resources/images'
48     },
49     extensions: ["", ".webpack.js", ".web.js", ".js", ".json", ".jsx"]
50   },
51   resolveLoader: {
52     root: [path.resolve('.')],
53     alias: {
54       'config-json-loader': 'tools/webpack/config-json-loader/index.js'
55   }
56   },
57   module: {
58     loaders: [
59       {test: /\.(js|jsx)$/, loaders: ['babel-loader', 'eslint-loader'], exclude: /node_modules/},
60       {test: /\.(css|scss)$/, loaders: ['style', 'css?sourceMap', 'sass?sourceMap']},
61       // required for font icons
62       {test: /\.(woff|woff2|ttf|eot|otf)(\?.*)?$/, loader: 'url-loader?limit=163840&mimetype=application/font-woff&name=[name].[ext]'},
63       {test: /\.(png|jpg|svg)(\?.*)?$/, loader: 'url-loader?limit=163840'},
64       {test: /\.json$/, loaders: ['json']},
65       { test: /\.xml$/, loader: 'xml-loader' }
66     ]
67   },
68   eslint: {
69     configFile: './.eslintrc',
70     failOnError: true,
71     emitError: true,
72     emitWarning: true
73   },
74   plugins: [
75     new webpack.DefinePlugin({
76       'process.env.NODE_ENV': JSON.stringify('production')
77       }),
78     new webpack.optimize.DedupePlugin(),
79     new webpack.optimize.UglifyJsPlugin({ sourceMap: true })
80   ]
81 };