TypeScript node_modules 안에 있는 *.d.ts 파일 에러
2022. 1. 25. 16:31ㆍTypeScript
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
https://stackoverflow.com/questions/65550070/nodejs-typescript-mongoose-index-d-ts-throwing-errors
728x90
반응형
'TypeScript' 카테고리의 다른 글
TypeScript - 배열 타입 설정 (0) | 2022.02.09 |
---|---|
TypeScript에서 dotenv 사용 하기 (0) | 2022.01.25 |
TypeScript Async Await @typescript-eslint/no-misused-promises 에러 해결 (0) | 2022.01.25 |
express -generator에서 TS변환 시 /bin/www 컴파일 안되는 현상 (0) | 2022.01.15 |
사용하는 tsconfig.json 옵션 (0) | 2021.12.18 |