Visual Studio Code – A setting type as object with predefined structure
Is there a way to enforce the structure of an object setting? For example package.json: { "contributes": { "configuration": { "properties": { "myextension.mysetting": { "type": "object", "default": { "anyKey": { "property1": "", "property2": "" } } } } } }…