Add bosh cli confiuration keys to package.json

This commit is contained in:
Kris De Volder
2017-07-26 10:58:02 -07:00
parent ac89f1a2e0
commit ab90d4ef2f

View File

@@ -44,7 +44,23 @@
"scopeName": "source.yaml",
"path": "./yaml-support/yaml.tmLanguage"
}
]
],
"configuration": {
"type": "object",
"title": "Bosh CLI Configuration",
"properties": {
"bosh.cli.command": {
"type": ["string" , "null"],
"default": "bosh",
"description": "Path to an executable to launch the bosh cli V2. A V2 cli is required! Set this to null to completely disable all editor features that require access to the bosh director"
},
"bosh.cli.director": {
"type": ["string", "null"],
"default": null,
"description": "Specifies the director to target when executing bosh cli commands. I.e. this value is passed to the CLI via `-e` parameter."
}
}
}
},
"main": "./out/lib/Main",
"scripts": {