问题
使用 yarn 命令安装 typescript 后,调用 tsc 命令查看版本时报错
tsc : 无法将“tsc”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。
yarn global add typescript
tsc -v
解决办法
将typescript安装到全局,但是这种方法会造成污染。
npm install typescript -g
补充
网上还有说如下命令可以解决该问题,经过测试,并不能解决
npx tsc --init
使用 yarn 命令安装 typescript 后,调用 tsc 命令查看版本时报错
tsc : 无法将“tsc”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。
yarn global add typescript
tsc -v
将typescript安装到全局,但是这种方法会造成污染。
npm install typescript -g
网上还有说如下命令可以解决该问题,经过测试,并不能解决
npx tsc --init
2024-11-02 11:11:09
2024-11-02 11:11:02
2024-11-02 11:11:55
2024-11-02 11:11:55
2024-11-02 11:11:55
2024-11-02 11:11:19
2024-11-02 11:11:16
2024-11-02 11:11:09
2024-11-02 11:11:07
2024-11-02 11:11:56