From 401fffe5d6edc76f62344a817940c082b7604348 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Wed, 18 Aug 2021 13:30:22 +0200 Subject: [PATCH] [configuration] Describes a JSON file using a schema. ... pops up when hovering a property in package.json. Fixes #130449 --- src/vs/workbench/api/common/configurationExtensionPoint.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/api/common/configurationExtensionPoint.ts b/src/vs/workbench/api/common/configurationExtensionPoint.ts index 4e98dbc2f6c..5d483b337aa 100644 --- a/src/vs/workbench/api/common/configurationExtensionPoint.ts +++ b/src/vs/workbench/api/common/configurationExtensionPoint.ts @@ -34,7 +34,10 @@ const configurationEntrySchema: IJSONSchema = { }, additionalProperties: { anyOf: [ - { $ref: 'http://json-schema.org/draft-07/schema#' }, + { + title: nls.localize('vscode.extension.contributes.configuration.properties.schema', 'Schema of the configuration property.'), + $ref: 'http://json-schema.org/draft-07/schema#' + }, { type: 'object', properties: {