forked from felixmosh/bull-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
113 lines (110 loc) · 2.84 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
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path')
const webpack = require('webpack')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin')
const basePath = '<%= basePath %>'
const isProd = process.env.NODE_ENV === 'production'
const pkg = require('./package.json')
module.exports = {
mode: 'development',
bail: true,
devtool: isProd ? false : 'eval-cheap-module-source-map',
entry: ['./src/ui/index.tsx'],
output: {
path: path.resolve(__dirname, './static'),
filename: `bundle${isProd ? '.[contenthash]' : ''}.js`,
publicPath: `${basePath}/static/`,
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
options: { presets: ['react-app'] },
},
{
test: /\.css$/,
use: [
process.env.NODE_ENV !== 'production'
? 'style-loader'
: MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
modules: {
auto: true,
exportLocalsConvention: 'camelCaseOnly',
localIdentName: isProd
? '[hash:base64:6]'
: '[name]__[local]--[hash:base64:5]',
},
},
},
],
},
{
test: /\.ts(x?)$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',
options: {
transpileOnly: true,
compilerOptions: {
sourceMap: !isProd,
},
},
},
],
},
],
},
plugins: [
new webpack.DefinePlugin({
['process.env.APP_VERSION']: JSON.stringify(pkg.version),
}),
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css',
}),
new HtmlWebpackPlugin({
filename: path.resolve(__dirname, './dist/ui/index.ejs'),
template: './src/ui/index.ejs',
templateParameters: {
basePath,
},
}),
new webpack.ContextReplacementPlugin(
/highlight.js\/lib\/languages$/,
/^.\/(json|javascript)$/,
),
new ForkTsCheckerWebpackPlugin(),
],
optimization: {
splitChunks: {
chunks: 'all',
minSize: 20000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 30,
maxInitialRequests: 30,
automaticNameDelimiter: '~',
cacheGroups: {
defaultVendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10,
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true,
},
},
},
},
}