mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
Add setting to disable all path based sugestions in js/ts
The new `javascript.suggest.paths` and `typescript.suggest.paths` settings replace `typescript.quickSuggestionsForPaths`. These settings should disable all path based suggestions from js/ts The old `quickSuggestionsForPath` setting is now marked deprecated and is not being migrated to these new settings as it has different semantics. It was originally designed just to disable quick suggestions for paths but it does not work properly when using TypeScript 2.9+
This commit is contained in:
@@ -397,6 +397,19 @@
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.quickSuggestionsForPaths%",
|
||||
"scope": "resource",
|
||||
"deprecationMessage": "%typescript.quickSuggestionsForPaths.deprecationMessage%"
|
||||
},
|
||||
"javascript.suggest.paths": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%configuration.suggest.paths%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"typescript.suggest.paths": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%configuration.suggest.paths%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"typescript.autoImportSuggestions.enabled": {
|
||||
|
||||
Reference in New Issue
Block a user