Trouble Shootings/Typescript
-
[Trouble Shooting] Unexpected any. Specify a different type. eslint (feat: no-explicit-any 에러)Trouble Shootings/Typescript 2024. 4. 29. 10:24
⚠️ 이슈 내용Typescript기반의 프로젝트를 설정할 때, any 타입으로 인한 에러 이슈로 작업이 어려움이 있었다. 이에 이러한 에러가 발생했다.Unexpected any. Specify a different type. eslint 📌 이슈 원인현재의 Typescript기반의 프로젝트에서 eslint를 어떻게 규정하느냐에 따라 any를 접하게 되었을 경우, Error 메시지를 띄우도록 하였기 때문이다. 이러한 이유를 Typescript-eslint에서 찾을 수 있었다. no-explicit-any | typescript-eslintDisallow the `any` type.typescript-eslint.io 아래의 그림에서 보듯이 Typescript에서 any타입을 쓰는 것은 굉장히 무책임할 ..