How to disable unnecessary autocomplete suggestions in VS Code?

Viewed 1499

I'm seeing strange autocompletion suggestions in VS Code that don't seem to have any context. I am expecting only the suggestions that come from my TS typings. These are properly shown on top of the suggestions list but then there's a bunch of options that are confusing to me, e.g. #endregion, #region, async arrow function, ...

enter image description here

Does anyone know:

  • Where they come from?
  • How to disable them?
1 Answers

Found the answer myself, it's this setting:

enter image description here

{
    "editor.snippetSuggestions": "none"
}
Related