Auto-import problems
If you work on JavaScript projects in VS Code, you’ve almost certainly been frustrated with the hit-or-miss natur...
For further actions, you may consider blocking this person and/or reporting abuse
I'm a software engineer too and I use TypeScript, React.js, and Node.js daily.
Thanks for this article who helped me to solve this automatic import in Vs Code issue.
May I ask you which font and theme you use in Vs Code?
I saw it many times in tutos and I would like to have it :)
Have a nice day!
Emanuela
Cobalt2 by Wes Bos
Glad it helped!
Like Andrejs said, the theme is Cobalt2 and the font is Operator Mono. Fira Mono is another similar, free mono spaced font :)
Nice, helpful and to the point
Hi Shane,
After reading your post I have a doubt. In the last line of your script:
Shouldn't it be
"node_modules/**/*"
instead of"**/node_modules/*"
?Hi @zonaguillermo, thanks for reading :)
This is the suggested pattern from the VS Code docs.
It is supposed to exclude any
node_modules
folders at any depth, not just the root levelnode_modules
folder (see this stack overflow post.TBH I'm not entirely sure when this case would come up, but it certainly won't hurt to include it, since you wouldn't want Intellisense to be searching any
node_modules
folders.It's likely that
"exclude": ["node_modules"]
is sufficient though.For anyone reading in the future,
"**/node_modules/*"
helps when you have sub-directories/sub-projects that have their ownnode_modules
[and package.json]Thanks Shane for de response,
I read these post and I see it more clearly now
I'm using TailwindCSS, so after creating jsconfig.json I had an issue:
If I delete "module": "ES6", the error will disappear.
I don't know why, but if you add the string into jsconfig.json:
it will work.
This can be helpful -> github.com/romansndlr/react-vite-r...
Doesn't work. I am using Vue.js