Add option to disable quick suggestions for js/ts paths

Fixes #35877
This commit is contained in:
Matt Bierner
2017-10-13 15:35:54 -07:00
parent 989c40066d
commit 73635a9cd3
3 changed files with 29 additions and 12 deletions

View File

@@ -41,5 +41,6 @@
"javascript.nameSuggestions": "Enable/disable including unique names from the file in JavaScript suggestion lists.",
"typescript.tsc.autoDetect": "Controls auto detection of tsc tasks. 'off' disables this feature. 'build' only creates single run compile tasks. 'watch' only creates compile and watch tasks. 'on' creates both build and watch tasks. Default is 'on'.",
"typescript.problemMatchers.tsc.label": "TypeScript problems",
"typescript.problemMatchers.tscWatch.label": "TypeScript problems (watch mode)"
"typescript.problemMatchers.tscWatch.label": "TypeScript problems (watch mode)",
"typescript.quickSuggestionsForPaths": "Enable/disable quick suggestions when typing out an import path."
}