问题
使用 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-10-30 21:10:12
2024-11-10 09:11:04
2024-11-10 09:11:50
2024-11-10 09:11:48
2024-11-10 09:11:32
2024-11-10 09:11:16
2024-11-10 09:11:06
2024-11-10 09:11:04
2024-11-10 09:11:58
2024-11-10 09:11:24