[typescript-language-features] Add option for excluding library symbols in "Go to Symbol in Workspace" (#192798)

* add option for excluding library symbols

* clarify in message that new option requires ts 5.3

* remove expect error
This commit is contained in:
Gabriela Araujo Britto
2023-09-13 11:19:52 -07:00
committed by GitHub
parent ca3b12f580
commit f563e33800
4 changed files with 14 additions and 0 deletions

View File

@@ -1275,6 +1275,12 @@
"default": false,
"description": "%configuration.preferGoToSourceDefinition%",
"scope": "window"
},
"typescript.workspaceSymbols.excludeLibrarySymbols": {
"type": "boolean",
"default": true,
"markdownDescription": "%typescript.workspaceSymbols.excludeLibrarySymbols%",
"scope": "window"
}
}
},