一般卡住报错 都是因为国外镜像失效了,解决方案如下:
先输入以下命令检查是否为国内镜像
npm config get registry
如果提示的不是
https://registry.npmmirror.com
就说明你不是国内镜像,需要重新配置,重新输入下面的命令
npm config set registry=https://registry.npmmirror.com
再次输入命令检查镜像是否正确
npm config get registry
如果显示的是https://registry.npmmirror.com就成功了,重新输入
npm install -g typescript
就可以继续正确安装了