From 0475c20be8b1e66f35d950081b9a242a625cd48d Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Fri, 21 Sep 2018 13:37:33 +0200 Subject: [PATCH] Flow errors as warnings --- webpack/dev.babel.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webpack/dev.babel.js b/webpack/dev.babel.js index f39a2e6e..792835cb 100644 --- a/webpack/dev.babel.js +++ b/webpack/dev.babel.js @@ -96,7 +96,9 @@ module.exports = { new webpack.DefinePlugin({ COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()), }), - new FlowWebpackPlugin(), + new FlowWebpackPlugin({ + reportingSeverity: 'warning' + }), new HtmlWebpackPlugin({ chunks: ['index'], template: `${SRC}index.html`,