728x90
반응형
작업 내용
VScode terminal에 tsc 실행
$ tsc main.ts
오류 내용
PS C:\Users\jjdon\AppData\Roaming\npm\node_modules> tsc main.ts
tsc : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\
jjdon\AppData\Roaming\npm\tsc.ps1 파일을 로드할 수 없습니다
. 자세한 내용은 about_Execution_Policies(https://go.microso
ft.com/fwlink/?LinkID=135170)를 참조하십시오.
위치 줄:1 문자:1
+ ~~~
+ CategoryInfo : 보안 오류: (:) [], PSSecurity
Exc eption
+ FullyQualifiedErrorId : UnauthorizedAccess
해결 방법
1. Visual Studio Code 관리자 권한으로 실행
2. terminal에 아래 순서대로 입력
Get-ExecutionPolicy
Set-ExecutionPolicy RemoteSigned
※ Restricted에서 RemoteSigned로 변경
Restricted : (제한된) 기본 실행 정책, 명령어 하나씩 실행 가능, 스크립트 파일을 로드하여 실행할 수 없음
RemoteSigned : 로컬 컴퓨터에서 본인이 생성한 스크립트만 실행 가능, 인터넷에서 다운로드한 스크립트는 신뢰된 배포자에 의해 서명된 것만 실행할 수 있음
3. tsc npm 다운로드
npm install -g ts-node
728x90
반응형