Reputation: 31
I'm struggling with following error in React app with typescript:
Cannot use JSX unless the '--jsx' flag is provided
Upvotes: 2
Views: 205
Reputation: 3716
Update your tsconfig.json
file:
"compilerOptions": {
...
"jsx": "react"
},
Upvotes: 2