Hacker News new | ask | show | jobs
by derekbaker783 1523 days ago
Not with any TSC settings I've ever used.
1 comments

noImplicitAny is a very common config option that helps catch a ton of bugs. I wouldn’t use TS without it.
noImplicitAny is different than what's being discussed (I think). Returning something typed as `any` in a function that has a different return type is totally fine: it's not implicit (you've cast it to any), and it passes (you're saying the type is literally anything after all).

There are lint rules to avoid typing as `any`.

There are "no explicit any" linting rules as well, which are a must.