본문 바로가기

카테고리 없음

[너 또 오류나? ts 파트] cannot use jsx unless the '--jsx' flag is provided.ts(17004) vscode

응 오류 날거야~ 

 

Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later).

 

간단하게 옵션을 추가하면 해결된다.

마이 베프 스택오버플로우~ 

 

Next.js TypeScript - The automatically generated tsconfig.json file is missing moduleResolution

I have an existing Next.js project and I was migrating it to typescript. I install all typescript realted packages as follows: npm install --save-dev typescript @types/react @types/node The genera...

stackoverflow.com

{
//새로 추가
  "moduleResolution": "node",

  },
//next도 혹시몰라 추가
  "exclude": ["node_modules", ".next"]
}

 

그 외 방법 ) vscode 워크스페이스 변경하기 

 

 

[디버깅] Cannot use JSX unless the '--jsx' flag is provided.ts(17004) 해결

CRA + JS로 코딩을 마치고 CRA + TS로 바꾸는 과정에서 자꾸 저 에러가 떴다. 한두 군데도 아니고 여러 군데에서 떠서 구글링을 좀 해봤고, 금방 결과를 찾을 수 있었다. 바로 아래 사진에서 Select TypeS

steadily-worked.tistory.com