mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 16:18:58 +01:00
Enable project wide JS/TS intellisense on web by default (#182812)
Fixes #170920 Enables this feature by default but also disables semantic errors. This is needed to avoid lots of annoying false positive errors for external modules. We plan to remove this limitation once type downloading support is enabled
This commit is contained in:
@@ -1241,14 +1241,17 @@
|
||||
"description": "%configuration.suggest.objectLiteralMethodSnippets.enabled%",
|
||||
"scope": "resource"
|
||||
},
|
||||
"typescript.experimental.tsserver.web.enableProjectWideIntellisense": {
|
||||
"typescript.tsserver.web.projectWideIntellisense.enabled": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%typescript.experimental.tsserver.web.enableProjectWideIntellisense%",
|
||||
"scope": "window",
|
||||
"tags": [
|
||||
"experimental"
|
||||
]
|
||||
"default": true,
|
||||
"description": "%configuration.tsserver.web.projectWideIntellisense.enabled%",
|
||||
"scope": "window"
|
||||
},
|
||||
"typescript.tsserver.web.projectWideIntellisense.suppressSemanticErrors": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%configuration.tsserver.web.projectWideIntellisense.suppressSemanticErrors%",
|
||||
"scope": "window"
|
||||
},
|
||||
"typescript.preferGoToSourceDefinition": {
|
||||
"type": "boolean",
|
||||
|
||||
Reference in New Issue
Block a user