반응형
오랜만에 예전에 했던 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
@types/express-serve-static-core/index.d.ts Typescript build error (version 4.17.31) · Issue #62300 · DefinitelyTyped/Definite
Discussed in #62299 Originally posted by Anvba September 16, 2022 Typescript (4.4.4) build fails to build the project with the latest types package [@types/express-serve-static-core]: node_modules/...
github.com
🔧 해결방법
npm install typescript@4.1.6
npm install -D @types/express-serve-static-core@4.17.3
package를 특정 버전으로 설치하여 해결할 수 있다.
반응형