forked from salgum1114/react-design-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.js
91 lines (90 loc) · 2.11 KB
/
webpack.common.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
const path = require('path');
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-transform-typescript', { allowDeclareFields: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
['@babel/plugin-proposal-private-methods', { loose: true }],
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-private-property-in-object', { loose: true }],
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-syntax-async-generators',
'@babel/plugin-proposal-object-rest-spread',
'react-hot-loader/babel',
'dynamic-import-webpack',
['import', { libraryName: 'antd', style: true }],
],
},
exclude: /node_modules/,
},
{
test: /\.(css|less)$/,
use: ['style-loader', 'css-loader', 'less-loader'],
},
{
test: /\.(ico|png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader',
options: {
publicPath: './',
name: 'fonts/[hash].[ext]',
limit: 10000,
},
},
{
test: /\.(js|jsx|tsx|ts)?$/,
include: /node_modules/,
use: ['react-hot-loader/webpack'],
},
],
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: 'initial',
name: 'vendor',
enforce: true,
},
},
},
noEmitOnErrors: true,
},
resolve: {
extensions: ['.ts', '.tsx', '.js', 'jsx'],
},
node: {
net: 'empty',
fs: 'empty',
tls: 'empty',
},
};