[typescript] TS2307: Cannot find module ‘logo192.png’ or its corresponding type declarations.

GettyImages 1428421517 1

이번에 다룰 내용은 JavaScript에서 TypeScript로 마이그레이션 과정에서 발생한 오류입니다. png 파일을 가져올 때 JavaScript에서는 발생하지 않았지만 TypeScript로 파일을 변경했을 때 발생합니다. 원인은 타입을 정의하지 않았기 때문에 발생한 오류입니다. png 뿐만 아니라 css, sass 파일 등도 …

Read more

Parameter 0 of constructor in {0} required a bean of type {1} that could not be found. 에러 처리 – Spring Framework

Parameter 0 of constructor in {0} required a bean of type {1} that could not be found

문제 발발 공부를 하거나 일을 하다보면 이런 에러들이 나온다. 개발자라면 이 에러를 긁어다가 구글에 검색해 볼 것이다. 나 또한 그랬고, 처음 접해보는 코틀린에 헤메다가 답을 찾았던 경험이다. Spring Framework로 프로젝트를 구성하는 도중 발생한 이슈다. 다행히 …

Read more

[TypeScript, React] Module not found: Error: Can’t resolve ‘@emotion/react’ in ‘node_modules/@mui/styled-engine/GlobalStyles’

Module not found:  Error: Can't resolve  '@emotion/react'

Module not found: Error: Can’t resolve ‘@emotion/react’ in ‘node_modules/@mui/styled-engine/GlobalStyles’ https://github.com/ac9831/covid-19-react-app covid-19 프로젝트를 진행하다가 만난 오류다. JavaScript로 만든 covid-19 clone 코드를 TypeScript로 변환하는 도중 만났으며 @mui 모듈은 Javascript에서는 @material-ui로 사용되고 있는 모듈이다. JavaScript에서 TypeScript로 material ui를 …

Read more