728x90
SMALL
nestjs error
-
[ Error ] TypeScript error TS1005: ';' expectederror handling 2023. 6. 24. 15:34
NestJs로 작업하던 중 TS1005 타입스크립트 에러가 나서 해결과정을 기록해본다. 증상 typescript 빌드 시 계속해서 TS1005에러가 발생하였다. TypeScript error TS1005: ';' expected 원인 tsc 버전이 낮아서 발생하는 에러 해결방법 tsc 버전 업그레이드 tsc 버전 확인 tsc --version 버전이 4.0.0 이하라면 업그레이드를 권장한다. uninstall typescript npm uninstall -g typescript npm install typescript --save-dev