问题
使用 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-08-27 09:08:17
2024-05-09 11:05:34
2024-06-06 10:06:47
2024-04-22 09:04:34
2024-03-29 15:03:20
2024-04-20 17:04:38
2024-05-10 08:05:15
2024-10-30 21:10:12