编译TS文件时初见禁止运行脚本错误

 问题:

PS C:\Users\Alimi\Desktop> tsc index.ts
tsc : 无法加载文件 C:\Users\Alimi\AppData\Roaming\npm\tsc.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_
Execution_Policies。
所在位置 行:1 字符: 1
+ tsc index.ts
+ ~~~
    + CategoryInfo          : SecurityError: (:) [],PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
 
 

解决办法:

以管理员身份 打开windows powershell 输入 set-ExecutionPolicy RemoteSigned   选择 A 或者 Y

 

你可能感兴趣的:(编译TS文件时初见禁止运行脚本错误)