-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
114 lines (107 loc) · 3.12 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
import path from 'path';
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
import ReactRefreshWebpackPlugin from '@pmmmwh/react-refresh-webpack-plugin';
const directories = {
source: 'src',
distribution: 'dist'
};
const VERSION = process.env.VERSION;
interface CreateFileWebpackPluginOptions {
content: string | Buffer;
outputFile: string;
}
class CreateFileWebpackPlugin {
constructor(private options: CreateFileWebpackPluginOptions) {}
apply(compiler: webpack.Compiler) {
compiler.hooks.compilation.tap(this.constructor.name, (compilation) => {
compilation.hooks.processAssets.tap(this.constructor.name, () => {
compilation.emitAsset(this.options.outputFile, new compiler.webpack.sources.RawSource(this.options.content));
});
});
}
}
export default (env, { mode }): webpack.Configuration => {
const production = mode === 'production';
return {
mode: production ? 'production' : 'development',
devtool: production ? 'source-map' : 'eval',
entry: {
app: path.resolve(directories.source, 'index.tsx')
},
devServer: !production
? {
compress: true,
historyApiFallback: true,
hot: true,
host: '0.0.0.0',
port: 3000
}
: undefined,
output: {
path: path.resolve(directories.distribution),
filename: 'assets/scripts/[name].bundle.js',
chunkFilename: 'assets/scripts/[id].chunk.js',
clean: true
},
module: {
rules: [
{
exclude: /node_modules/,
loader: 'babel-loader',
test: /\.tsx?$/,
options: {
plugins: production ? [] : ['react-refresh/babel']
}
},
{
test: /\.css$/,
use: [production ? MiniCssExtractPlugin.loader : 'style-loader', 'css-loader', 'postcss-loader']
}
]
},
resolve: {
alias: {
'@': path.resolve(directories.source)
},
extensions: ['.js', '.jsx', '.ts', '.tsx']
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(directories.source, 'index.html')
}),
new CreateFileWebpackPlugin({
content: JSON.stringify({ version: VERSION }),
outputFile: 'version.json'
}),
new webpack.DefinePlugin({
'process.env.VERSION': JSON.stringify(VERSION),
'process.env.VERSION_URL': JSON.stringify('/version.json')
}),
...(production
? [
new MiniCssExtractPlugin({
filename: 'assets/stylesheets/[name].css',
chunkFilename: 'assets/stylesheets/[id].css'
})
]
: [new ReactRefreshWebpackPlugin()])
],
optimization: {
minimizer: [
`...`,
...(production
? [
new CssMinimizerPlugin({
minimizerOptions: {
preset: ['default', { discardComments: { removeAll: true } }]
}
})
]
: [])
]
}
};
};