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

@@ -529,6 +529,12 @@
"type": "boolean",
"default": true,
"description": "%typescript.autoClosingTags%"
},
"typescript.suggestions.enabled": {
"type": "boolean",
"default": true,
"description": "%typescript.suggestions.enabled%",
"scope": "resource"
}
}
},