1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-26 00:48:35 +00:00

Flow errors as warnings

This commit is contained in:
Vladimir Volek 2018-09-21 13:37:33 +02:00
parent 973c2ee6c1
commit 0475c20be8

View File

@ -96,7 +96,9 @@ module.exports = {
new webpack.DefinePlugin({ new webpack.DefinePlugin({
COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()), COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash()),
}), }),
new FlowWebpackPlugin(), new FlowWebpackPlugin({
reportingSeverity: 'warning'
}),
new HtmlWebpackPlugin({ new HtmlWebpackPlugin({
chunks: ['index'], chunks: ['index'],
template: `${SRC}index.html`, template: `${SRC}index.html`,