-
Notifications
You must be signed in to change notification settings - Fork 11
/
webpack.config.js
69 lines (63 loc) · 1.97 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const isDevServer = process.argv.find(v => v.includes('webpack-dev-server'));
const ClosureCompilerPlugin = require('webpack-closure-compiler');
function getHtmlWebpackConfig(directory) {
const outputPath = path.join('public', directory, 'index.html');
return {
template: path.resolve('src', directory, 'index.html'),
templateParameters: {isDevServer},
filename: isDevServer ? outputPath : path.join(__dirname, outputPath)
}
}
const plugins = [
new HtmlWebpackPlugin(getHtmlWebpackConfig('master')),
new HtmlWebpackPlugin(getHtmlWebpackConfig('left')),
new HtmlWebpackPlugin(getHtmlWebpackConfig('right')),
new HtmlWebpackPlugin(getHtmlWebpackConfig('admin')),
new HtmlWebpackPlugin(getHtmlWebpackConfig(''))
];
if (!isDevServer) {
plugins.push(
new ClosureCompilerPlugin({
compiler: {
language_in: 'ECMASCRIPT6',
language_out: 'ECMASCRIPT6',
compilation_level: 'ADVANCED'
},
concurrency: 3,
})
);
}
module.exports = function(env = {}) {
const config = {
mode: isDevServer ? 'development' : 'production',
devtool: isDevServer ? 'source-map': false,
entry: './src/App.ts',
output: {
path: path.join(__dirname, 'public'),
filename: 'script.js'
},
plugins: plugins,
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{loader: 'ts-loader'}
]
},
{
test: /\.template\.html?$/,
use: [
{loader: 'raw-loader'}
]
}
]
}
};
return config;
};