반응형
오랜만에 예전에 했던 Node.js + Express + Typescript 프로젝트를 실행했더니 여러 오류가 났다...!! 😵
node_modules/@types/express-serve-static-core/index.d.ts:745:13 - error TS1005: ';' expected.
...
node_modules 안에서 오류가 난거라 패키지문제인데, 구글링을 통해 이 이슈를 찾았다.
https://github.com/DefinitelyTyped/DefinitelyTyped/issues/62300
🔧 해결방법
npm install typescript@4.1.6
npm install -D @types/express-serve-static-core@4.17.3
package를 특정 버전으로 설치하여 해결할 수 있다.
반응형