I was running into a similar problem, and a simple fix that worked for me was the following.
I added this to my package.json:
"eslintConfig": {
"extends": [
"react-app"
]
},
I noticed that create-react-app --template typescript generates a package.json with this in it.