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
When define available configurations for extension in contributes.configuration section of package.json, I can't reuse some properties for other like definitions in JSON schema.
As below:
{// ..."contributes": {// ..."configuration": {"definitions": {"something": {// ...}},"someconfig": {"$ref": "#/definitions/something"// or anyway to reference to above definitions}// ...}// ...}// ...}
The text was updated successfully, but these errors were encountered:
When define available configurations for extension in
contributes.configuration
section ofpackage.json
, I can't reuse some properties for other like definitions in JSON schema.As below:
The text was updated successfully, but these errors were encountered: