Unwanted autocomplete suggestions

I am getting unwanted autocomplete suggestions and I'm not sure how to turn them off.

Sample sentences

enter image description here

The way proposals are put forward

C:\Program Files (x86)\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\lib.es6.d.ts

settings.json (part)

  "files.exclude": {
    "/**/node_modules": true,
    "/**/bower_components": true,
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    ".vscode": true
  },

      

Any ideas to turn this off would be awesome!

+3


source to share


1 answer


RTCIceCandidatePairChangedEvent

is the dom type. Text input suggestions are enabled by default for JS and TS, and types for the JavaScript Standard Library.

To explicitly control which ticks are enabled, create a file jsconfig.json

that sets lib

:



{
    "compilerOptions": { 
        "lib": ["es6"]
     }
} 

      

The above configuration means that only standard type libraries will be included es6

. Here's more information on setting uplib

+1


source







All Articles