I have a lot of code that I'm porting to Typescript with missing types. For now, I'd like my IDE (WebStorm) to just highlight places that need typing, and I'll slowly get them fixed up.
If tsconfig.json
had a warning
setting for noImplicitAny
, that would be ideal. Another alternative would be a tslint rule, but I don't know if the tslint engine is up to this job.
Does anyone know of a way to achieve this?
you can either enable noImplicitAny as true, or strict as true (would enable noImplicitAny and several other rules), in tsconfig.json.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With