반응형
Express를 JS에서 TS로 마이그레이션을 하는 도중, tsc를 사용해 js로 컴파일 할려고 tsc 명령어를 치니 다음과 같은 에러 메시지가 나왔다.
This is not the tsc command you are looking for
To get access to the TypeScript compiler, tsc, from the command line either:
- Use npm install typescript to first add TypeScript to your project before using npx
- Use yarn to avoid accidentally running code from un-installed packages
검색을 해보니, 해당 문제는 tsc 패키지와 typescript 패키지가 충돌해서 생기는 문제라고 한다. 그래서 tsc 패키지가 따로 설치되어 있으면, 해당 패키지를 삭제하면 된다.
npm uninstall tsc
참고자료
https://stackoverflow.com/questions/67677320/this-is-not-the-tsc-command-you-are-looking-for
반응형
'프로그래밍 언어 > JS TS' 카테고리의 다른 글
express에서 공통 트랜잭션 ID 부여하기 (0) | 2023.08.12 |
---|---|
JSON 데이터 엑셀로 저장하기 (0) | 2022.09.25 |
JS 코딩테스트 준비하기 (0) | 2022.09.24 |
Typescript 유틸리티 타입 탐방하기 (0) | 2022.07.30 |
Object 전체 순회하기 (0) | 2022.07.13 |