Created by: dschep
Projects created by Create React App use the babel-preset-react
which includes
Flow babel plugins which introduces new syntax. This is important for users to know
as it causes what used to be syntax errors to be silently suppressed because they're
valid type annotations in Flow. For example if a user accidentally has [foo: 'bar']
,
Babel will silently convert it to [foo]
.