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
|
/*
* SonarQube
* Copyright (C) 2009-2018 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/* eslint-disable import/no-extraneous-dependencies */
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const InterpolateHtmlPlugin = require('./InterpolateHtmlPlugin');
const paths = require('./paths');
const utils = require('./utils');
module.exports = ({ production = true }) => ({
mode: production ? 'production' : 'development',
devtool: production ? 'source-map' : 'cheap-module-source-map',
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: ['.ts', '.tsx', '.js', '.json']
},
entry: [
!production && require.resolve('react-dev-utils/webpackHotDevClient'),
require.resolve('./polyfills'),
!production && require.resolve('react-error-overlay'),
'./src/main/js/index.js'
].filter(Boolean),
output: {
path: paths.appBuild,
pathinfo: !production,
publicPath: paths.publicPath,
filename: production ? 'js/[name].[chunkhash:8].js' : 'js/[name].js',
chunkFilename: production ? 'js/[name].[chunkhash:8].chunk.js' : 'js/[name].chunk.js'
},
module: {
rules: [
{
test: /(\.js$|\.ts(x?)$)/,
exclude: /(node_modules|libs)/,
use: [
{ loader: 'babel-loader' },
{
loader: 'ts-loader',
options: { transpileOnly: true }
}
]
},
{
test: /\.css$/,
use: ['style-loader', utils.cssLoader({ production }), utils.postcssLoader()].filter(
Boolean
)
}
].filter(Boolean)
},
plugins: [
// `allowExternal: true` to remove files outside of the current dir
production && new CleanWebpackPlugin([paths.appBuild], { allowExternal: true, verbose: false }),
production &&
new CopyWebpackPlugin([
{ from: paths.appPublic, to: paths.appBuild, ignore: [paths.appHtml] },
{ from: paths.jsLib, to: paths.jsBuild }
]),
new HtmlWebpackPlugin({
inject: false,
template: paths.appHtml,
minify: utils.minifyParams({ production })
}),
// keep `InterpolateHtmlPlugin` after `HtmlWebpackPlugin`
!production && new InterpolateHtmlPlugin({ WEB_CONTEXT: '' }),
!production && new webpack.HotModuleReplacementPlugin()
].filter(Boolean)
});
|