问题:Problems loading reference ‘https://json.schemastore.org/tsconfig’: Unable to load schema from ‘https://json.schemastore.org/tsconfig’: Request vscode/content failed
原因:
- vscode在加载tsconfig.json文件时会向https://json.schemastore.org/tsconfig发送请求,由于本机的同源策略安全设置,不允许跨域访问资源,所有会将该请求的响应数据拦截。
解决方法
设置vscode中的代理服务器配置:Proxy-Authoriazation配置项
第一步:
第二步:在settings.json中加入该配置字段
"http.proxyAuthorization": "false",