TypeScript node_modules 안에 있는 *.d.ts 파일 에러

2022. 1. 25. 16:31TypeScript

JS에서는 잘 작동했던 패키지가 갑자기 TypeScript변경 작업을 하며 컴파일 진행 시 릴리즈가 된 패키지에 있는 *.d.ts 파일에 에러가 발생하여 .d.ts파일을 내가 변경해야 되나 싶어 크게 당황했다.

 

JS에서는 잘 작동했으니 TypeScript를 node_modules에 대해 느슨하게 설정하는 방법

 

skipLibCheck를 true로 변경한다.

 

skipLibCheck : true

skipLibCheck라는 옵션은

 

(*.d.ts) 선언파일에 대해 TypeScript는 검증하지 않는다는 옵션이다.

 

defualt는 false로 되어있다.

 

https://typescript-kr.github.io/pages/compiler-options.html

 

TypeScript 한글 문서

TypeScript 한글 번역 문서입니다

typescript-kr.github.io

https://stackoverflow.com/questions/65550070/nodejs-typescript-mongoose-index-d-ts-throwing-errors

 

NodeJS TypeScript - Mongoose index.d.ts throwing errors

Hello so I do not know what is the problem here so when I run my NodeJS server mongoose index.d.ts throws more than one error which I do not know of I tried ignoring the node_modules from tsconfig ...

stackoverflow.com

 

728x90
반응형