lqvd txebi bhsjuaxin
lqvd txebi bhsjuaxin

Reputation: 31

Create React App shows "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

Upvotes: 2

Views: 205

Answers (1)

Fatema Tuz Zuhora
Fatema Tuz Zuhora

Reputation: 3716

Update your tsconfig.json file:

"compilerOptions": {
    ...
    "jsx": "react"
 },

Upvotes: 2

Related Questions