카테고리 없음
[React]Could not find a declaration file for module 'react-query' 에러 해결법
flyda
2022. 8. 11. 18:06
Could not find a declaration file for module 'react-query'
에러에서 하라는 대로 `@types/react-query `도 설치해보고 `.d.ts`파일도 만들어 봤지만.... 계속 해결할 수 없었다.
해결방법
npm install @tanstack/react-query
이후에 react-query 대신 '@tanstack/react-query'를 설치하고 import 한다!! 라이브러리 이름이 변경되었다고 한다..!
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
참고
react-query 설치관련 문제 - 코딩애플 온라인 강좌
react-query 설치관련 문제 .ts파일은 설치안되었다는 소리같은데 에러메세지에 나온 npm i --save-dev 어쩌구 명령어 입력해봅시다 라이브러리 이름이 바뀌었네요 npm install @tanstack/react-query 합시다 ajax
codingapple.com