From adecaa37cdc6e68e80ca87c2a63457af86163f47 Mon Sep 17 00:00:00 2001 From: sunhao Date: Wed, 22 May 2019 11:51:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BC=82=E5=B8=B8=E7=9A=84=20ForkTsChec?= =?UTF-8?q?kerWebpackPlugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/webpack.config.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/webpack.config.config.ts b/src/config/webpack.config.config.ts index 3b70705..068233b 100644 --- a/src/config/webpack.config.config.ts +++ b/src/config/webpack.config.config.ts @@ -43,6 +43,10 @@ export function getConfigConfig({ } ] }, - plugins: [new ForkTsCheckerWebpackPlugin()] + plugins: [ + new ForkTsCheckerWebpackPlugin({ + async: false + }) + ] }) }