From 239d223c8a0f7ba0a95426397d7ef5960c9fdb52 Mon Sep 17 00:00:00 2001 From: bac-joker Date: Wed, 3 Mar 2021 16:30:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BC=95=E5=85=A5pack?= =?UTF-8?q?age.json=20type=20=E4=B8=BA=20module=20=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E4=B8=8D=E5=8A=A0=E6=96=87=E4=BB=B6=E5=90=8E=E7=BC=80=E5=90=8D?= =?UTF-8?q?=EF=BC=8C=E5=AF=BC=E8=87=B4=E6=A8=A1=E5=9D=97=E6=89=BE=E4=B8=8D?= =?UTF-8?q?=E5=88=B0=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-preset-built-in/package.json | 2 +- .../src/plugins/commands/webpackConfig/index.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/fes-preset-built-in/package.json b/packages/fes-preset-built-in/package.json index a93feca0..ddd340db 100644 --- a/packages/fes-preset-built-in/package.json +++ b/packages/fes-preset-built-in/package.json @@ -65,7 +65,7 @@ "style-loader": "^2.0.0", "url-loader": "^4.1.1", "vue-loader": "^16.1.2", - "webpack": "^5.21.0", + "webpack": "^5.24.2", "webpack-bundle-analyzer": "^4.4.0", "webpack-chain": "^6.5.1", "webpack-dev-server": "^3.11.2", diff --git a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js index fa709d50..e3b14d8b 100644 --- a/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js +++ b/packages/fes-preset-built-in/src/plugins/commands/webpackConfig/index.js @@ -163,6 +163,12 @@ export default async function getConfig({ }); // --------------- js ----------- + // https://webpack.docschina.org/configuration/module/#resolve-fully-specified + webpackConfig.module + .rule('esm') + .test(/\.m?jsx?$/) + .resolve.set('fullySpecified', false); + webpackConfig.module .rule('js') .test(/\.(js|mjs|jsx)$/)