Remove SSH server

Closes #1502
This commit is contained in:
Anmol Sethi
2020-04-27 09:27:45 -04:00
parent 8608ae2f08
commit d0d5461a67
7 changed files with 1 additions and 473 deletions

View File

@ -31,8 +31,6 @@ export interface Args extends VsArgs {
readonly open?: boolean
readonly port?: number
readonly socket?: string
readonly "ssh-host-key"?: string
readonly "disable-ssh"?: boolean
readonly version?: boolean
readonly force?: boolean
readonly "list-extensions"?: boolean
@ -99,9 +97,6 @@ const options: Options<Required<Args>> = {
version: { type: "boolean", short: "v", description: "Display version information." },
_: { type: "string[]" },
"disable-ssh": { type: "boolean", description: "Disable the SSH server." },
"ssh-host-key": { type: "string", path: true, description: "SSH server host key." },
"user-data-dir": { type: "string", path: true, description: "Path to the user data directory." },
"extensions-dir": { type: "string", path: true, description: "Path to the extensions directory." },
"builtin-extensions-dir": { type: "string", path: true },