라이브러리 사용 중에 우선 구현을 먼저 해보려고 타입을 any로 지정했더니 eslint 에러가 발생했다.

Unexpected any. Specify a different type
eslint 설정 파일에서 규칙을 수정해주면 된다.
나는 .eslintrc.cjs 를 수정해줬다.
module.exports = {
// other configs..
rules: {
// other rules..
"@typescript-eslint/no-explicit-any": "off",
},
}

이제 any 타입에 대한 에러가 발생하지 않는다!