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.
347
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)
348
348
* @default false
349
349
*/
@@ -436,7 +436,7 @@ export type Configuration = {
436
436
*/
437
437
'disableMethodSnippets.jsxAttributes': boolean
438
438
/**
439
-
* 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
440
440
* Example: `// @ts-diagnostic-disable
441
441
* Advanced usage only! Enable in `.vscode/settings.json` for projects that need this
442
442
* Since its changes only IDE experience, but not tsc
@@ -470,15 +470,15 @@ export type Configuration = {
470
470
*/
471
471
switchExcludeCoveredCases: boolean
472
472
/**
473
-
* 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)
474
474
* Might be enabled by default in future. Experimental as for now compares only start of completions.
475
475
* Might require completion retrigger if was triggered by not quick suggestions.
476
476
* @default false
477
477
*/
478
478
caseSensitiveCompletions: boolean
479
479
/**
480
480
* Might be useful to enable for a moment. Note, that you can bind shortcuts within VSCode to quickly toggle settings like this
481
-
* Also experimental and wasnt tested in all cases
481
+
* Also experimental and wasn't tested in all cases
482
482
* Like described in `caseSensitiveCompletions` might require completion retrigger
0 commit comments