Cannot use JSX unless the '--jsx' flag is provided
Solution 1:
Every time I run npm start
, it overrides whatever I configure in {jsx: ...}
with react-jsx
in order to be compatible with JSX transform in React 17.
The following changes are being made to your tsconfig.json file:
- compilerOptions.jsx must be react-jsx (to support the new JSX transform in React 17)
The problem is VSCode using an older version of typescript (4.0.3), while the typescript version shipped with the project is (4.1.2).
The following did the trick for me:
- Go to the command palette CTRL+Shift+P (Or ⌘+Shift+P on Mac).
- Choose "TypeScript: Select a TypeScript Version...".
- Choose "Use workspace Version".
Solution 2:
Cannot use JSX unless the '--jsx' flag is provided
Restart your IDE. Sometimes tsconfig.json changes aren't immediately picked up 🌹
Solution 3:
For whoever reading, go to the tsconfig.json and change that line from react-jsx
to react
:
{
"compilerOptions": {
"jsx": "react"
}
}
bonus: try also setting the IDE TS version to the latest (atm 4.2), in vscode CMD + SHIFT + P and change it from there.
Solution 4:
create-react-app
is broken out of the box. AS OF 2021 DECEMBER
Inside of tsconfig, include
was set only to /src
, Change to:
"include": [
"./src/**/*.ts"
]
Solution 5:
In my case, the issue was that VSCode generated an empty tsconfig.json
file which, of course, did nothing.
I added this to tsconfig.json
from Typescript's React Page:
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es6",
"jsx": "react"
}
}
...then hit save
and VSCode took it from there.