import Property from '../views/property/index.tsx';
리액트 환경세팅을 하다가 typescript 로 바꿨더니 무수히 많은 오류가 났다.
구글링하여 다른건 해결했는데 tsx 파일 import 하는게 계속 오류가 났다.
An import path cannot end with a '.tsx' extension
해결방법
1. eslint 설정
// .eslintrc.js
'@typescript-eslint/ban-ts-comment': 'off',
2. ~~.tsx 는 모두 쓰지 않기!
//오류
import Property from '../views/property/index.tsx';
//해결
import Property from '../views/property';
반응형
'React' 카테고리의 다른 글
[React & 환경세팅] [eslint] document is not defined / window is not defined (0) | 2022.06.27 |
---|---|
[React & 환경세팅] [prettier] 한줄 자동 줄바꿈 방지 설정하기 (0) | 2022.06.27 |
[React & 환경세팅] [sass-rem] 렌더링 시 개발자도구에서 확인하면 rem(몇px) 동작 안하고 strike 쳐질때 (sass-rem not working) (0) | 2022.06.27 |
[React & 환경세팅] .env 환경변수 파일 값 변경하기 (0) | 2022.03.16 |
[React] useEffect란 ? ? ? (0) | 2022.02.24 |