Skip to content
On this page

Visual Studio 확장 프로그램 Code Runner로 TypeScript 실행하기

수정하기
문서 생성 2021-08-02 22:28:31 최근 수정 2022-06-13 23:00:48
On this page

자바스크립트를 Code Runner를 이용해 간단히 실행할 수 있었는데 아무 설정 없이 타입스크립트는 가능하지 않았다.
검색을 해보니 ts-node를 우선 설치해줘야 했다.
npm i ts-node -g

그리고 Preferences > Settings > Extensions > Run Code configuration > Code-runner: Executor Map > Edit in settings.json 파일 내에서 설정이 되어있어야 한다. 기본적으로 ts-node로 이미 되어있는 것을 확인할 수 있었다.

"code-runner.executorMap": {
"typescript": "ts-node"
}

reference

LINKS TO THIS PAGE