Reputation: 99
So I'm pretty new to typescript. This is what my tsconfig.json file looks like, I don't even know where that "examples" come from
This is what errors I get in browser
This is my package.json
Upvotes: 4
Views: 1709
Reputation: 99
Ok so I found what was the error with the help of this page, the problem was that I had a "@types/" : "fortawesome/react-fortawesome" specified which was not a @type
So the solution was to remove the @types by doing "yarn remove @types/
Upvotes: 3