I am developing a VS Code extension and I wanted to use contributes.configuration in package.json to set some configuration for the extension.
I have added this object:
"configuration": {
"title": "Extension Name",
"properties": {
"git.sampleProp1": {
"type": "boolean",
"default": false,
"description": "Sample Prop 1"
},
"git.sampleProp2": {
"type": "boolean",
"default": false,
"description": "Sample Prop 2"
}
}
}
But I am having a hard time to figure out how to test this during development. When I press F5 in vs code my Extension Development Host opens up, the extension works just fine, but I am not able to find any UI in it from which I can modify and text my extension for various configurations.
How can I do this?
Goto Settings -> Extensions to see the configurations for your extension. You will find your extension name in the list

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With