vscode: Intellisense menu very slow to open (.js files)
Issue still occurs with all extensions disabled.
- VS Code Version: 1.57.1
- OS Version: Windows x64 10.0.17763
Steps to Reproduce:
code . --disable-extensions
- Open a .js file and begin typing the start of a snippet
- Wait 500-5000+ ms
- Intellisense menu opens with snippet suggested
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Comments: 16 (3 by maintainers)
Try disabling “TypeScript and JavaScript Language Features”. It is Vs Code built in extension and disabling this fixed this issue for me.
Oooo… so far so good… thanks @longbuibao !!!
@dancherb so if you are working on a standard javascript projects, I think you have to install typescript globally by
npm install -g typescript@3.8.3
Find your location ofnode_modules
folder (here) and then in vscode, pressCtrl + ,
to open setting findtypescript.version
, click onEdit in settings.json
and paste yournode_modules
path inI’ve been struggling for a few days to this issue and eventually solved by downgrading the typescript version to 3.8.3! (solution on issue #95200) Anyway as far as I know, this issue is strongly relevent to tsserver.js, that is the vscode electron_node process running background, occupying more than 100% of cpu.
npm install —save-dev typescript@3.8.3
command > Typescript: Select Typescript Version…