ERROR
[ERROR] Cannot use JSX unless the '--jsx' flag is provided.ts(17004)
숭코기
2023. 3. 21. 22:37
728x90
이미 JS로 만들어진 프로젝트 파일을 TS으로 바꾸는 과정에서 겪은 오류
App.tsx
Cannot use JSX unless the '--jsx' flag is provided.ts(17004)
tsconfig.json
해당 부분을 "jsx": "react" 로 변경해주면 사라진다.
728x90