import type * as PrettyFormat from './types' Error

2020. 11. 5. 13:14카테고리 없음

반응형

@testing-library/react 라이브러리 사용 중 typescript 버전이 3.8 버전 미만일 경우 발생하는 것으로 보임

www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html#-type-only-imports-and-export

 

해결 방법

typescript 관련된 라이브러리 최신화 혹은 >= 3.8.0 업그레이드

$ yarn add typescript @types/node @types/react @types/react-dom @types/jest

 

참고 링크

 

반응형