Typescript works perfect since it tells you all errors you have in the code when compiling.
However, in development, this can be a bit annoying when you make a change to try like, for example, to comment a line. An example working with eslint: Failed to compile. Line whatever. Variable X is declared but its value is never read.
Is there a way to force Typescript compile with this kind of errors that don't affect the app's behaviour?