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
Copy file name to clipboardexpand all lines: packages/language-core/schemas/vue-tsconfig.schema.json
+35-5
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,36 @@
65
65
"default": false,
66
66
"markdownDescription": "Check unknown components. If not set, uses the 'strictTemplates' value."
67
67
},
68
+
"inferComponentDollarEl": {
69
+
"type": "boolean",
70
+
"default": false,
71
+
"markdownDescription": "Infer `$el` type on the component instance."
72
+
},
73
+
"inferComponentDollarRefs": {
74
+
"type": "boolean",
75
+
"default": false,
76
+
"markdownDescription": "Infer `$refs` type on the component instance."
77
+
},
78
+
"inferTemplateDollarAttrs": {
79
+
"type": "boolean",
80
+
"default": false,
81
+
"markdownDescription": "Infer `$attrs` type in the template and the return type of `useAttrs`."
82
+
},
83
+
"inferTemplateDollarEl": {
84
+
"type": "boolean",
85
+
"default": false,
86
+
"markdownDescription": "Infer `$el` type in the template."
87
+
},
88
+
"inferTemplateDollarRefs": {
89
+
"type": "boolean",
90
+
"default": false,
91
+
"markdownDescription": "Infer `$refs` type in the template."
92
+
},
93
+
"inferTemplateDollarSlots": {
94
+
"type": "boolean",
95
+
"default": false,
96
+
"markdownDescription": "Infer `$slots` type in the template and the return type of `useSlots`."
97
+
},
68
98
"skipTemplateCodegen": {
69
99
"type": "boolean",
70
100
"default": false,
@@ -85,11 +115,6 @@
85
115
"default": [ "aria-*" ],
86
116
"markdownDescription": "A glob matcher array that should always be recognizing as HTML Attributes rather than Component props. Attribute name will never convert to camelize case."
87
117
},
88
-
"plugins": {
89
-
"type": "array",
90
-
"default": [ ],
91
-
"markdownDescription": "Plugins to be used in the SFC compiler."
0 commit comments