-
Notifications
You must be signed in to change notification settings - Fork 74
Closed
Description
Since upgrading to 1.0.0 (using Eclipse 4.25.0) I see these errors in my React tsx files:
In one file of my project, after working on other issues, this error is permanently gone without following the advice to add the import. All other tsx files I open show that error.
How can I get rid of this?
I see also other errors which were also suddenly highlighted after upgrading to 1.0.0. Some of them are right and need to be resolved. But why they were not highlighted before?
Additionally, the production build does not highlight those "new" errors.
I'm using
"typescript": "^4.7.4"
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-jsx": "^1.0.0",
and this is my tsconfig.json
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"baseUrl": "src/",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"sourceMap": true
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"node_modules",
"build"
]
}
Metadata
Metadata
Assignees
Labels
No labels

