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?
--noEmitOnError
flag is used), so technically those are warnings... – Panarabism