mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
chore: corejs开启proposals
This commit is contained in:
parent
59525ed887
commit
c347a645e9
@ -46,7 +46,8 @@ module.exports = function webpackConfig(configs, webpack, mode) {
|
|||||||
const plugins = [
|
const plugins = [
|
||||||
[
|
[
|
||||||
require.resolve('@babel/plugin-transform-runtime'), {
|
require.resolve('@babel/plugin-transform-runtime'), {
|
||||||
corejs: 3
|
corejs: 3,
|
||||||
|
proposals: true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
require.resolve('@babel/plugin-proposal-object-rest-spread'),
|
require.resolve('@babel/plugin-proposal-object-rest-spread'),
|
||||||
@ -426,21 +427,7 @@ module.exports = function webpackConfig(configs, webpack, mode) {
|
|||||||
baseConfig.optimization = {
|
baseConfig.optimization = {
|
||||||
minimizer: [
|
minimizer: [
|
||||||
new TerserPlugin({
|
new TerserPlugin({
|
||||||
test: /\.m?js(\?.*)?$/i,
|
|
||||||
chunkFilter: () => true,
|
|
||||||
warningsFilter: () => true,
|
|
||||||
extractComments: false,
|
|
||||||
sourceMap: true,
|
|
||||||
cache: true,
|
|
||||||
cacheKeys: defaultCacheKeys => defaultCacheKeys,
|
|
||||||
parallel: true,
|
|
||||||
include: undefined,
|
|
||||||
exclude: undefined,
|
|
||||||
minify: undefined,
|
|
||||||
terserOptions: {
|
terserOptions: {
|
||||||
output: {
|
|
||||||
comments: /^\**!|@preserve|@license|@cc_on/i
|
|
||||||
},
|
|
||||||
compress: {
|
compress: {
|
||||||
arrows: false,
|
arrows: false,
|
||||||
collapse_vars: false,
|
collapse_vars: false,
|
||||||
@ -469,7 +456,11 @@ module.exports = function webpackConfig(configs, webpack, mode) {
|
|||||||
mangle: {
|
mangle: {
|
||||||
safari10: true
|
safari10: true
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
sourceMap: true,
|
||||||
|
cache: true,
|
||||||
|
parallel: true,
|
||||||
|
extractComments: false
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
splitChunks: {
|
splitChunks: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user