Add debug config option to azdata extension (#11999)

This commit is contained in:
Charles Gagnon
2020-08-28 07:04:47 -07:00
committed by GitHub
parent e9c5a6dfbd
commit 4789f2165b
5 changed files with 29 additions and 1 deletions

View File

@@ -19,6 +19,19 @@
"url": "https://github.com/Microsoft/azuredatastudio.git"
},
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "%azdata.config.title%",
"properties": {
"azdata.logDebugInfo": {
"type": "boolean",
"default": false,
"description": "%azdata.config.debug%"
}
}
}
},
"dependencies": {
"request": "^2.88.2",
"semver": "^7.3.2",