민프
[React][TypeScript] TypeScript에서 JSON 파일 import하기 본문
일반적으로 자바스크립트에서 json을 import하는 방법은
import exJSON from `../sample.json';
이렇게 자바스크립트로 작성했을 때는 문제가 없는데 타입스크립트로 전환하게 된다면 타입스크립트는 기본적으로 JSON파일 확인을 지원하지 않기 때문에 json을 가져오기 위해 몇 가지 설정이 필요하다.
jsconfig.json
{
"compilerOptions": {
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true
}
}
'[React]' 카테고리의 다른 글
[React][TypeScript] react-datePicker Icon과 같이 사용하기 (feat.label) (0) | 2023.02.17 |
---|---|
[React][Error] React-modal ariaHideApp이란? (0) | 2023.02.17 |
[React] Recoil이란? (0) | 2023.02.08 |
[React][TypeScript] Zendesk -2 봇 로직 추가하기 (0) | 2023.02.07 |
[React][TypeScript] Zendesk -1 챗봇 적용해보기 (0) | 2023.02.07 |
Comments