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
This commit is contained in:
William Chargin 2018-09-05 12:03:30 -07:00 committed by GitHub
parent 4e8c89abfe
commit 98a039d340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
// @no-flow // @flow
const webpack = require("webpack"); const webpack = require("webpack");
const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin"); const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin");