We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
does anyone know how to make VSCode to intellisense
import Home from 'components/home'
where Home's full path is
Home
components/home/index.jsx
It seems VSCode intellisense only recognizes index.js and NOT index.jsx. How can I make it recognize .jsx as well? Thanks!
index.js
index.jsx
.jsx
The text was updated successfully, but these errors were encountered:
This is node specific resolution. You might need to create jsconfig.json and set "moduleResolution": "node" in compilerOptions section. For details see https://code.visualstudio.com/docs/nodejs/working-with-javascript and https://www.typescriptlang.org/tsconfig#moduleResolution
jsconfig.json
"moduleResolution": "node"
compilerOptions
Sorry, something went wrong.
mjbvz
No branches or pull requests
does anyone know how to make VSCode to intellisense
where
Home
's full path isIt seems VSCode intellisense only recognizes
index.js
and NOTindex.jsx
. How can I make it recognize.jsx
as well? Thanks!The text was updated successfully, but these errors were encountered: