New config to turn off TypeScript autocomplete suggestions (#58011)

* New config to turn off TypeScript autocomplete suggestions

* add missing semicolon

* Exclude everything, even name suggestions, when suggestions disabled
This commit is contained in:
Dave Williams
2018-09-10 19:06:12 +01:00
committed by Matt Bierner
parent d140d23129
commit b9dbeb90d1
3 changed files with 14 additions and 2 deletions

View File

@@ -65,5 +65,6 @@
"typescript.updateImportsOnFileMove.enabled.prompt": "Prompt on each rename.",
"typescript.updateImportsOnFileMove.enabled.always": "Always update paths automatically.",
"typescript.updateImportsOnFileMove.enabled.never": "Never rename paths and don't prompt.",
"typescript.autoClosingTags": "Enable/disable automatic closing of JSX tags. Requires using TypeScript 3.0 or newer in the workspace."
"typescript.autoClosingTags": "Enable/disable automatic closing of JSX tags. Requires using TypeScript 3.0 or newer in the workspace.",
"typescript.suggestions.enabled": "Enabled/disable autocomplete suggestions based on TypeScript"
}