在Visual Studio Code中用命令行编译ts文件时报下面错误:
tsc : 无法加载文件 C:\Users\Administrator\AppData\Roaming\npm\tsc.ps1。未对文件 C:\Users\Administrator\AppData\Ro
aming\npm\tsc.ps1 进行数字签名。无法在当前系统上运行该脚本。有关运行脚本和设置执行策略的详细信息,请参阅 https:/g
o.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
- tsc hello.ts
+ CategoryInfo : SecurityError: (:) [],PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess
解决办法:
1、以管理员身份运行powerShell(一定要以管路员身份打开)
2、执行以下命令:
set-ExecutionPolicy RemoteSigned
3、敲Y
再试一下tsc编译,搞定