You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Removes definiion suggestion from vue `components` options.
346
+
* Removes definition suggestion from vue `components` options.
342
347
* Might be useful with [Vetur-extended goToDefinition](https://github.com/zardoy/vetur-extended/blob/main/src/gotoDefinition.ts) for components as a replacement for (https://github.com/vuejs/language-tools/issues/1245)
343
348
* @default false
344
349
*/
@@ -431,7 +436,7 @@ export type Configuration = {
431
436
*/
432
437
'disableMethodSnippets.jsxAttributes': boolean
433
438
/**
434
-
* Support `@ts-diagnostic-disable` top-level comment for disabling spefici semantic diagnostics
439
+
* Support `@ts-diagnostic-disable` top-level comment for disabling specific semantic diagnostics
435
440
* Example: `// @ts-diagnostic-disable
436
441
* Advanced usage only! Enable in `.vscode/settings.json` for projects that need this
437
442
* Since its changes only IDE experience, but not tsc
@@ -465,15 +470,15 @@ export type Configuration = {
465
470
*/
466
471
switchExcludeCoveredCases: boolean
467
472
/**
468
-
* Make completions case-sensetive (see https://github.com/microsoft/TypeScript/issues/46622)
473
+
* Make completions case-sensitive (see https://github.com/microsoft/TypeScript/issues/46622)
469
474
* Might be enabled by default in future. Experimental as for now compares only start of completions.
470
475
* Might require completion retrigger if was triggered by not quick suggestions.
471
476
* @default false
472
477
*/
473
478
caseSensitiveCompletions: boolean
474
479
/**
475
480
* Might be useful to enable for a moment. Note, that you can bind shortcuts within VSCode to quickly toggle settings like this
476
-
* Also experimental and wasnt tested in all cases
481
+
* Also experimental and wasn't tested in all cases
477
482
* Like described in `caseSensitiveCompletions` might require completion retrigger
0 commit comments