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