mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Introduce typescript.tsserver.useSyntaxServer
Fixes #131142 This setting replaces `typescript.tsserver.useSeparateSyntaxServer` and officailly documents the syntax only mode on desktop
This commit is contained in:
@@ -971,8 +971,25 @@
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%configuration.tsserver.useSeparateSyntaxServer%",
|
||||
"markdownDeprecationMessage": "%configuration.tsserver.useSeparateSyntaxServer.deprecation%",
|
||||
"scope": "window"
|
||||
},
|
||||
"typescript.tsserver.useSyntaxServer": {
|
||||
"type": "string",
|
||||
"scope": "window",
|
||||
"description": "%configuration.tsserver.useSyntaxServer%",
|
||||
"default": "auto",
|
||||
"enum": [
|
||||
"always",
|
||||
"never",
|
||||
"auto"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%configuration.tsserver.useSyntaxServer.always%",
|
||||
"%configuration.tsserver.useSyntaxServer.never%",
|
||||
"%configuration.tsserver.useSyntaxServer.auto%"
|
||||
]
|
||||
},
|
||||
"typescript.tsserver.maxTsServerMemory": {
|
||||
"type": "number",
|
||||
"default": 3072,
|
||||
|
||||
Reference in New Issue
Block a user