From 98a039d340cdee79961aeb9aa7a3b7c03a135e33 Mon Sep 17 00:00:00 2001 From: William Chargin Date: Wed, 5 Sep 2018 12:03:30 -0700 Subject: [PATCH] backend: use Flow in Webpack config (#780) Summary: Over the past few commits, I have accidentally removed all Flow errors from the Webpack config. We can now use Flow on that file to prevent any new errors from creeping in. Test Plan: Running `yarn flow` suffices. wchargin-branch: backend-flow --- config/webpack.config.backend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webpack.config.backend.js b/config/webpack.config.backend.js index 4c65e86..f414cf4 100644 --- a/config/webpack.config.backend.js +++ b/config/webpack.config.backend.js @@ -1,4 +1,4 @@ -// @no-flow +// @flow const webpack = require("webpack"); const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin");