Skip to content

Commit 63c60c4

Browse files
committed
add new typescript 5.3 setting
1 parent 06ada3a commit 63c60c4

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

LSP-typescript.sublime-settings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"autoImportFileExcludePatterns": [],
1414
"disableSuggestions": false,
1515
"displayPartsForJSDoc": true,
16+
"excludeLibrarySymbolsInNavTo": true,
1617
"generateReturnInDocTemplate": true,
1718
"importModuleSpecifierEnding": "auto",
1819
"importModuleSpecifierPreference": "shortest",

sublime-package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,23 +209,31 @@
209209
},
210210
"provideRefactorNotApplicableReason": {
211211
"type": "boolean",
212-
"default": true,
212+
"default": true
213213
},
214214
"allowRenameOfImportPath": {
215215
"type": "boolean",
216+
"default": true
216217
},
217218
"includePackageJsonAutoImports": {
218219
"enum": [
219220
"auto",
220221
"on",
221222
"off"
222223
],
224+
"default": "auto"
223225
},
224226
"displayPartsForJSDoc": {
225227
"type": "boolean",
228+
"default": true
229+
},
230+
"excludeLibrarySymbolsInNavTo": {
231+
"type": "boolean",
232+
"default": true
226233
},
227234
"generateReturnInDocTemplate": {
228235
"type": "boolean",
236+
"default": true
229237
},
230238
"interactiveInlayHints": {
231239
"type": "boolean",

0 commit comments

Comments
 (0)