代理
{
//VSCode是不会走系统代理的,只能配置VSCode的代理设置
//默认是环境变量http_proxy、https_proxy
//远程开发会关闭这个
"http.proxy": "http://127.0.0.1:7890",
//不进行代理的domain
"http.noProxy": [],
//请求头Proxy-Authorization
"http.proxyAuthorization": null,
//使用kerberos认证而不用请求头Proxy-Authorization
"http.proxyKerberosServicePrincipal": ""
//是否验证代理服务器证书
"http.proxyStrictSSL": true,
//允许扩展使用此代理配置
//override=强制使用扩展使用,fallback=扩展没有配置或者取消代理则使用
//不过,当axios配置proxy时,override无法覆盖
"http.proxySupport": "override",
//远程开发时是否使用本地的代理配置
"http.useLocalProxyConfiguration": true,
//远程开发代理地址
"remote.SSH.httpProxy": "",
"remote.SSH.httpsProxy": "",
//为true时才允许fetch使用vscode代理设置
"http.fetchAdditionalSupport": true
}