Unexpected any. Specify a different type. eslint

j_wisdom_h·2023년 11월 30일
0

Error

목록 보기
3/8

에러

Unexpected any. Specify a different type. eslint

해결법

.eslintrc.json의 rules에 "@typescript-eslint/no-explicit-any": "off "추가

//.eslintrc.json
{
    ...
    "rules": {
        // Unexpected any. Specify a different type 문구 제거
        "@typescript-eslint/no-explicit-any": "off", 
        // React, { ReactElement } from "react" 설정 안함
        "@typescript-eslint/explicit-module-boundary-types": "off",
    }
}
profile
뚜잇뚜잇 FE개발자

0개의 댓글