-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
121 lines (103 loc) · 2.62 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
var path = require('path');
var webpack = require('webpack');
var WebpackNotifierPlugin = require('webpack-notifier');
var ProgressBarPlugin = require('progress-bar-webpack-plugin');
var chalk = require('chalk');
var ENV = process.env.NODE_ENV;
var IS_PRODUCTION = ENV === 'production';
var VERSION = JSON.stringify(require('./package.json').version);
function root(args) {
args = Array.prototype.slice.call(arguments, 0);
return path.join.apply(path, [__dirname].concat(args));
}
function webpackConfig(options = {}) {
return {
context: root(),
debug: true,
devtool: 'cheap-module-eval-source-map',
resolve: {
extensions: ['', '.ts', '.js', '.json', '.css', '.scss', '.html'],
root: root('src'),
descriptionFiles: ['package.json'],
modules: [
'node_modules',
root('src')
]
},
entry: {
'bootstrap': './src/bootstrap.ts',
'polyfills': './src/polyfills.ts',
'vendor': './src/vendor.ts'
},
devServer: {
outputPath: root('dist'),
watchOptions: {
poll: true
},
port: 9999,
hot: options.HMR,
inject: true,
stats: {
modules: false,
cached: false,
chunk: false
}
},
output: {
path: root('dist'),
filename: '[name].js',
sourceMapFilename: '[name].map',
chunkFilename: '[id].chunk.js'
},
module: {
preLoaders: [{
test: /\.js$/,
loader: 'source-map',
exclude: /(node_modules)/
}, {
test: /\.ts$/,
loader: 'tslint'
}],
loaders: [{
test: /\.ts$/,
loaders: [
'awesome-typescript-loader',
'@angularclass/hmr-loader'
],
exclude: /(node_modules)/
}, {
test: /\.scss$/,
loaders: [
'style',
'css?sourceMap',
'sass?sourceMap'
]
}]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: ['vendor', 'polyfills'],
minChunks: Infinity
}),
new webpack.DefinePlugin({
'ENV': JSON.stringify(ENV),
'HMR': options.HMR,
'IS_PRODUCTION': IS_PRODUCTION,
'APP_VERSION': VERSION
}),
new WebpackNotifierPlugin({
excludeWarnings: true
}),
new ProgressBarPlugin({
format: chalk.yellow.bold('Webpack Building...') + ' [:bar] ' + chalk.green.bold(':percent') + ' (:elapsed seconds)'
})
],
tslint: {
emitErrors: false,
failOnHint: false,
resourcePath: 'src'
}
};
};
module.exports = webpackConfig;