Why intellesense for file path and installed npm package is not showing in vs code until I press Ctrl + space for typescript -


intellisense before press ctrl + space: enter image description here
intellisense after press ctrl + space: enter image description here

i upgraded vs code version 1.11.0 , opened project. when try use import statement in code, code completion not working installed node modules until press ctr + space. (before upgrade) when start type node module name in (import {foo} 'fo') see suggestions. foo file (after upgrade) not working.

i solved changing strings: true in editor.quicksuggestions set false after upgrade vscode version 1.11.0. can find these options going file > preferences > settings. settings.json open. search editor.quicksuggestions , click on edit icon set strings true. "editor.quicksuggestions": { "other": true, "comments": false, "strings": true }


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -