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",
}
}