4

package.json

"eslintConfig": { "extends": [ "react-app", "react-app/jest" ] },

Firmin Martin
  • 280
  • 3
  • 15

1 Answers1

4

I just have the same error: for some reason, your react-scripts package is too old (mine was 1.1.5). Find and change it in package.json to a more up-to-date version, say 4.0.3, then run npm update to solve the issue.

Firmin Martin
  • 280
  • 3
  • 15