Errors
TS7016: Could not find a declaration file for module '@/App'. '/src/App.jsx' implicitly has an 'any' type.
egas
2021. 10. 8. 15:25
발생 오류
발생 원인
타입스크립트는 .js 확장자를 허용하지 않는다. 따라서 js에서 ts로의 부분적인 마이그레이션을 진행할 때는 다음과 같은 오류가 발생할 수 있다.
해결 방안
tsconfig.json에서 allowJS 옵션을 설정해서 js 파일 사용을 허용할 수 있다.
// tsconfig.json
"allowJS" : true
728x90