|
111 | 111 | "description": "Unless this option is `false`, or `includeCompletionsWithInsertText` is not enabled, member completion lists triggered with `.` will include entries on potentially-null and potentially-undefined values, with insertion text to replace preceding `.` tokens with `?.`.", |
112 | 112 | "type": "boolean" |
113 | 113 | }, |
| 114 | + { |
| 115 | + "key": "apexskier.typescript.config.userPreferences.includeCompletionsWithClassMemberSnippets", |
| 116 | + "title": "Include completions with class member snippets", |
| 117 | + "description": "If enabled, completions for class members (e.g. methods and properties) will include a whole declaration for the member. E.g., `class A { f| }` could be completed to `class A { foo(): number {} }`, instead of `class A { foo }`.", |
| 118 | + "type": "boolean" |
| 119 | + }, |
| 120 | + { |
| 121 | + "key": "apexskier.typescript.config.userPreferences.includeCompletionsWithObjectLiteralMethodSnippets", |
| 122 | + "title": "Include completions with class member snippets", |
| 123 | + "description": "If enabled, object literal methods will have a method declaration completion entry in addition to the regular completion entry containing just the method name. E.g., `const objectLiteral: T = { f| }` could be completed to `const objectLiteral: T = { foo(): void {} }`, in addition to `const objectLiteral: T = { foo }`.", |
| 124 | + "type": "boolean" |
| 125 | + }, |
| 126 | + { |
| 127 | + "key": "apexskier.typescript.config.userPreferences.useLabelDetailsInCompletionEntries", |
| 128 | + "title": "Use label details in completion entries", |
| 129 | + "type": "boolean" |
| 130 | + }, |
| 131 | + { |
| 132 | + "key": "apexskier.typescript.config.userPreferences.allowIncompleteCompletions", |
| 133 | + "title": "Allow incomplete completions", |
| 134 | + "type": "boolean" |
| 135 | + }, |
114 | 136 | { |
115 | 137 | "key": "apexskier.typescript.config.userPreferences.importModuleSpecifierPreference", |
116 | 138 | "title": "Import module specifier", |
|
144 | 166 | }, |
145 | 167 | { |
146 | 168 | "key": "apexskier.typescript.config.userPreferences.lazyConfiguredProjectsFromExternalProject", |
147 | | - "title": "Lazy configured projects from external projects", |
| 169 | + "title": "Lazy configured projects from external project", |
148 | 170 | "type": "boolean" |
149 | 171 | }, |
150 | 172 | { |
|
173 | 195 | ], |
174 | 196 | "default": "auto" |
175 | 197 | }, |
| 198 | + { |
| 199 | + "key": "apexskier.typescript.config.userPreferences.jsxAttributeCompletionStyle", |
| 200 | + "title": "jsx attribute completion style", |
| 201 | + "type": "enum", |
| 202 | + "values": [ |
| 203 | + ["auto", "Automatic"], |
| 204 | + ["braces", "Braces"], |
| 205 | + ["none", "None"] |
| 206 | + ], |
| 207 | + "default": "auto" |
| 208 | + }, |
176 | 209 | { |
177 | 210 | "key": "apexskier.typescript.config.userPreferences.displayPartsForJSDoc", |
178 | 211 | "title": "Display parts for JSDoc", |
|
182 | 215 | "key": "apexskier.typescript.config.userPreferences.generateReturnInDocTemplate", |
183 | 216 | "title": "Generate return in documentation templates", |
184 | 217 | "type": "boolean" |
| 218 | + }, |
| 219 | + { |
| 220 | + "key": "apexskier.typescript.config.userPreferences.includeInlayParameterNameHints", |
| 221 | + "title": "Include inlay parameter name hints", |
| 222 | + "type": "enum", |
| 223 | + "values": [ |
| 224 | + ["none", "None"], |
| 225 | + ["literals", "Literals"], |
| 226 | + ["all", "All"] |
| 227 | + ], |
| 228 | + "default": "none" |
| 229 | + }, |
| 230 | + { |
| 231 | + "key": "apexskier.typescript.config.userPreferences.includeInlayParameterNameHintsWhenArgumentMatchesName", |
| 232 | + "title": "Include inlay parameter name hints when argument matches name", |
| 233 | + "type": "boolean" |
| 234 | + }, |
| 235 | + { |
| 236 | + "key": "apexskier.typescript.config.userPreferences.includeInlayFunctionParameterTypeHints", |
| 237 | + "title": "Include inlay function parameter type hints", |
| 238 | + "type": "boolean" |
| 239 | + }, |
| 240 | + { |
| 241 | + "key": "apexskier.typescript.config.userPreferences.includeInlayVariableTypeHints", |
| 242 | + "title": "Include inlay variable type hints", |
| 243 | + "type": "boolean" |
| 244 | + }, |
| 245 | + { |
| 246 | + "key": "apexskier.typescript.config.userPreferences.includeInlayVariableTypeHintsWhenTypeMatchesName", |
| 247 | + "title": "Include inlay variable type hints when type matches name", |
| 248 | + "type": "boolean" |
| 249 | + }, |
| 250 | + { |
| 251 | + "key": "apexskier.typescript.config.userPreferences.includeInlayPropertyDeclarationTypeHints", |
| 252 | + "title": "Include inlay property declaration type hints", |
| 253 | + "type": "boolean" |
| 254 | + }, |
| 255 | + { |
| 256 | + "key": "apexskier.typescript.config.userPreferences.includeInlayFunctionLikeReturnTypeHints", |
| 257 | + "title": "Include inlay function like return type hints", |
| 258 | + "type": "boolean" |
| 259 | + }, |
| 260 | + { |
| 261 | + "key": "apexskier.typescript.config.userPreferences.includeInlayEnumMemberValueHints", |
| 262 | + "title": "Include inlay enum member value hints", |
| 263 | + "type": "boolean" |
| 264 | + }, |
| 265 | + { |
| 266 | + "key": "apexskier.typescript.config.userPreferences.autoImportFileExcludePatterns", |
| 267 | + "title": "Auto import file exclude patterns", |
| 268 | + "type": "stringArray" |
| 269 | + }, |
| 270 | + { |
| 271 | + "key": "apexskier.typescript.config.userPreferences.disableLineTextInReferences", |
| 272 | + "title": "Disable line text in references", |
| 273 | + "description": "Indicates whether ReferenceResponseItem.lineText is supported.", |
| 274 | + "type": "boolean" |
185 | 275 | } |
186 | 276 | ] |
187 | 277 | }, |
|
313 | 403 | "description": "Unless this option is `false`, or `includeCompletionsWithInsertText` is not enabled, member completion lists triggered with `.` will include entries on potentially-null and potentially-undefined values, with insertion text to replace preceding `.` tokens with `?.`.", |
314 | 404 | "type": "boolean" |
315 | 405 | }, |
| 406 | + { |
| 407 | + "key": "apexskier.typescript.config.userPreferences.includeCompletionsWithObjectLiteralMethodSnippets", |
| 408 | + "title": "Include completions with class member snippets", |
| 409 | + "description": "If enabled, object literal methods will have a method declaration completion entry in addition to the regular completion entry containing just the method name. E.g., `const objectLiteral: T = { f| }` could be completed to `const objectLiteral: T = { foo(): void {} }`, in addition to `const objectLiteral: T = { foo }`.", |
| 410 | + "type": "boolean" |
| 411 | + }, |
| 412 | + { |
| 413 | + "key": "apexskier.typescript.config.userPreferences.useLabelDetailsInCompletionEntries", |
| 414 | + "title": "Use label details in completion entries", |
| 415 | + "type": "boolean" |
| 416 | + }, |
| 417 | + { |
| 418 | + "key": "apexskier.typescript.config.userPreferences.allowIncompleteCompletions", |
| 419 | + "title": "Allow incomplete completions", |
| 420 | + "type": "boolean" |
| 421 | + }, |
316 | 422 | { |
317 | 423 | "key": "apexskier.typescript.config.userPreferences.importModuleSpecifierPreference", |
318 | 424 | "title": "Import module specifier", |
|
346 | 452 | }, |
347 | 453 | { |
348 | 454 | "key": "apexskier.typescript.config.userPreferences.lazyConfiguredProjectsFromExternalProject", |
349 | | - "title": "Lazy configured projects from external projects", |
| 455 | + "title": "Lazy configured projects from external project", |
350 | 456 | "type": "boolean" |
351 | 457 | }, |
352 | 458 | { |
|
375 | 481 | ], |
376 | 482 | "default": "auto" |
377 | 483 | }, |
| 484 | + { |
| 485 | + "key": "apexskier.typescript.config.userPreferences.jsxAttributeCompletionStyle", |
| 486 | + "title": "jsx attribute completion style", |
| 487 | + "type": "enum", |
| 488 | + "values": [ |
| 489 | + ["auto", "Automatic"], |
| 490 | + ["braces", "Braces"], |
| 491 | + ["none", "None"] |
| 492 | + ], |
| 493 | + "default": "auto" |
| 494 | + }, |
378 | 495 | { |
379 | 496 | "key": "apexskier.typescript.config.userPreferences.displayPartsForJSDoc", |
380 | 497 | "title": "Display parts for JSDoc", |
|
384 | 501 | "key": "apexskier.typescript.config.userPreferences.generateReturnInDocTemplate", |
385 | 502 | "title": "Generate return in documentation templates", |
386 | 503 | "type": "boolean" |
| 504 | + }, |
| 505 | + { |
| 506 | + "key": "apexskier.typescript.config.userPreferences.includeInlayParameterNameHints", |
| 507 | + "title": "Include inlay parameter name hints", |
| 508 | + "type": "enum", |
| 509 | + "values": [ |
| 510 | + ["none", "None"], |
| 511 | + ["literals", "Literals"], |
| 512 | + ["all", "All"] |
| 513 | + ], |
| 514 | + "default": "none" |
| 515 | + }, |
| 516 | + { |
| 517 | + "key": "apexskier.typescript.config.userPreferences.includeInlayParameterNameHintsWhenArgumentMatchesName", |
| 518 | + "title": "Include inlay parameter name hints when argument matches name", |
| 519 | + "type": "boolean" |
| 520 | + }, |
| 521 | + { |
| 522 | + "key": "apexskier.typescript.config.userPreferences.includeInlayFunctionParameterTypeHints", |
| 523 | + "title": "Include inlay function parameter type hints", |
| 524 | + "type": "boolean" |
| 525 | + }, |
| 526 | + { |
| 527 | + "key": "apexskier.typescript.config.userPreferences.includeInlayVariableTypeHints", |
| 528 | + "title": "Include inlay variable type hints", |
| 529 | + "type": "boolean" |
| 530 | + }, |
| 531 | + { |
| 532 | + "key": "apexskier.typescript.config.userPreferences.includeInlayVariableTypeHintsWhenTypeMatchesName", |
| 533 | + "title": "Include inlay variable type hints when type matches name", |
| 534 | + "type": "boolean" |
| 535 | + }, |
| 536 | + { |
| 537 | + "key": "apexskier.typescript.config.userPreferences.includeInlayPropertyDeclarationTypeHints", |
| 538 | + "title": "Include inlay property declaration type hints", |
| 539 | + "type": "boolean" |
| 540 | + }, |
| 541 | + { |
| 542 | + "key": "apexskier.typescript.config.userPreferences.includeInlayFunctionLikeReturnTypeHints", |
| 543 | + "title": "Include inlay function like return type hints", |
| 544 | + "type": "boolean" |
| 545 | + }, |
| 546 | + { |
| 547 | + "key": "apexskier.typescript.config.userPreferences.includeInlayEnumMemberValueHints", |
| 548 | + "title": "Include inlay enum member value hints", |
| 549 | + "type": "boolean" |
| 550 | + }, |
| 551 | + { |
| 552 | + "key": "apexskier.typescript.config.userPreferences.autoImportFileExcludePatterns", |
| 553 | + "title": "Auto import file exclude patterns", |
| 554 | + "type": "stringArray" |
| 555 | + }, |
| 556 | + { |
| 557 | + "key": "apexskier.typescript.config.userPreferences.disableLineTextInReferences", |
| 558 | + "title": "Disable line text in references", |
| 559 | + "description": "Indicates whether ReferenceResponseItem.lineText is supported.", |
| 560 | + "type": "boolean" |
387 | 561 | } |
388 | 562 | ] |
389 | 563 | } |
|
0 commit comments