-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
212 lines (199 loc) · 6.1 KB
/
webpack.config.ts
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import path from 'path';
import {Configuration as WebpackConfiguration, WebpackPluginInstance} from 'webpack';
import {Configuration as WebpackDevServerConfiguration} from 'webpack-dev-server';
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
import {CleanWebpackPlugin} from 'clean-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import ESLintPlugin from 'eslint-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import StyleLintPlugin from 'stylelint-webpack-plugin';
import TerserPlugin from 'terser-webpack-plugin';
import {default as npmPackage} from './package.json';
/* global __dirname */
interface Configuration extends WebpackConfiguration {
devServer?: WebpackDevServerConfiguration;
}
const packageName = npmPackage.name;
module.exports = (env: null, argv: { mode: 'none' | 'development' | 'production' }) => {
// Common configurations
// ------------------------------------------------------
const config: Configuration = {
name: packageName,
mode: argv.mode,
entry: './src/main.ts',
// https://webpack.js.org/configuration/output/
output: {
filename: `[name].js`,
},
target: 'browserslist',
resolve: {
extensions: ['.ts', '.js'],
},
stats: {
// errorDetails: true,
children: true,
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
}
},
{
test: /\.(css|scss)$/,
use: [
argv.mode === 'development' ? 'style-loader' : MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
sourceMap: true,
url: false,
},
},
'postcss-loader', // options loaded from postcss.config.js
{
loader: 'sass-loader',
options: {
sourceMap: true,
sassOptions: {
outputStyle: 'expanded',
includePaths: [
'src/scss.scss',
'src/scss/'
],
},
},
},
],
},
// {
// test: /\.(svg|jpg|png)$/i,
// use: [
// {
// loader: 'file-loader',
// options: {
// name: '[path][name].[ext]',
// context: 'src/',
// publicPath: argv.mode === 'development' ? '/' : '../'
// }
// }
// ]
// },
],
},
plugins: [
new MiniCssExtractPlugin({
filename: (argv.mode === 'development' ? '[name].css' : `styles.min.css`),
chunkFilename: '[id].css',
}),
new HtmlWebpackPlugin({
favicon: './src/favicon.ico',
inject: true,
hash: false,
template: './src/index.html',
filename: (argv.mode === 'development' ? 'index.html' : `${packageName}.html`),
}),
new ForkTsCheckerWebpackPlugin({
async: false
}),
]
}; // Common configurations
// Development build
// ------------------------------------------------------
if (argv.mode === 'development') {
config.watchOptions = {
aggregateTimeout: 300,
poll: 1000,
ignored: ['node_modules'],
};
// https://webpack.js.org/configuration/dev-server/
config.devServer = {
hot: true,
watchFiles: ['src/**/*'],
// static: 'local',
host: 'localhost',
port: 4600,
};
config.performance = false;
config.devtool = 'source-map';
} // IF mode === 'development'
// Production build
// ------------------------------------------------------
if (argv.mode === 'production') {
config.output = {
filename: `script.min.js`,
path: path.resolve(__dirname, './dist/'),
};
// https://webpack.js.org/configuration/performance/
config.performance = {
// values are in bytes, Default = 250000 (250KB or 244KiB)
// KiB = KB * 0.976563
maxEntrypointSize: (2.5e5), // 244 KiB
maxAssetSize: (2.5e5), // 244 KiB
};
config.optimization = {
minimize: true,
minimizer: [
// https://webpack.js.org/plugins/terser-webpack-plugin/
new TerserPlugin({
test: /\.js($|\?)/i,
parallel: true,
extractComments: false,
terserOptions: {
ecma: 2016,
// Mangle advanced options see:
// https://lihautan.com/reduce-minified-code-size-by-property-mangling/
// https://github.com/terser/terser#mangle-options
mangle: {
properties: {
// specify a list of names to be mangled with a regex
regex: /(^_)|(^app_|p_)/,
},
},
// https://github.com/terser/terser#compress-options
// compress: {
// unsafe_arrows: true,
// // passes: 2,
// },
format: {
comments: false, // Default is 'some'. Can use regex /(?:^!|@(?:license|preserve))/i,
},
},
}),
new CssMinimizerPlugin({
include: /\.css$/g,
minimizerOptions: {
// map: {
// inline: false,
// annotation: true,
// },
preset: ['default', {discardComments: {removeAll: true}}],
},
parallel: true,
}),
],
};
config.plugins = [
new CleanWebpackPlugin({
dry: false,
verbose: false,
cleanOnceBeforeBuildPatterns: ['./**/*'], // clean out dist directory
}),
...(config.plugins as WebpackPluginInstance[]),
new ESLintPlugin({
extensions: ['.ts', '.js'],
exclude: 'node_modules'
}),
new StyleLintPlugin({
configFile: './stylelint.config.js',
files: 'src/*.scss',
}),
];
} // IF mode === 'production'
return config;
};