-
-
Notifications
You must be signed in to change notification settings - Fork 450
Expand file tree
/
Copy pathwebpack.common.js
More file actions
70 lines (69 loc) · 1.62 KB
/
webpack.common.js
File metadata and controls
70 lines (69 loc) · 1.62 KB
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
const path = require('path');
/** @type {import('webpack').Configuration} */
module.exports = {
module: {
rules: [
{
test: /\.(js|jsx|tsx|ts)$/,
loader: 'babel-loader',
include: [path.resolve(__dirname, 'src')],
options: {
cacheDirectory: true,
babelrc: false,
presets: [
[
'@babel/preset-env',
{
modules: false,
useBuiltIns: 'usage',
corejs: 3,
targets: { browsers: ['last 5 versions', 'ie >= 11'], node: 'current' },
},
],
'@babel/preset-react',
[
'@babel/preset-typescript',
{
isTSX: true,
allExtensions: true,
allowDeclareFields: true,
},
],
],
plugins: [
'@babel/plugin-transform-runtime',
['@babel/plugin-proposal-class-properties', { loose: true }],
['@babel/plugin-proposal-private-methods', { loose: true }],
['@babel/plugin-proposal-private-property-in-object', { loose: true }],
['@babel/plugin-proposal-decorators', { legacy: true }],
['import', { libraryName: 'antd', style: true }],
],
},
},
{
test: /\.(css|less)$/,
use: ['style-loader', 'css-loader', 'less-loader'],
},
{
test: /\.(ico|png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)$/,
type: 'asset',
parser: { dataUrlCondition: { maxSize: 10 * 1024 } },
generator: { filename: 'fonts/[hash][ext]' },
},
],
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: 'initial',
name: 'vendors',
},
},
},
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
},
};