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
"description": "Enables experimental support for ES7 decorators.",
58
+
"type": "boolean"
59
+
}
60
+
}
61
+
},
62
+
"files": {
63
+
"type": "array",
64
+
"description": "If no 'files' property is present in a jsconfig.json, the language service defaults to including all files the containing directory and subdirectories. When a 'files' property is specified, only those files are included.",
65
+
"items": {
66
+
"type": "string",
67
+
"format": "uri"
68
+
}
69
+
},
70
+
"exclude": {
71
+
"type": "array",
72
+
"description": "List files and folders that should not be included. This property is not honored when the 'files' property is present.",
Copy file name to clipboardExpand all lines: src/vs/platform/jsonschemas/common/jsonValidationExtensionPoint.ts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,11 @@ export class JSONValidationExtensionPoint {
71
71
collector.error(nls.localize('invalid.url.schema',"'configuration.jsonValidation.url' must start with 'http:', 'https:' or './' to reference schemas located in the extension"));
0 commit comments