I've got some trouble with ts-node when I develop.
I want to test something, so as you know, comment is my best friend. But with ts-node I've got this error :
'foo' is declared but its value is never read
But I don't want to comment all my unused variables because theses variables are in fact useful for the code after testing.
So, is there a solution like ts-node --please-let-me-work
to ignore these error ?
Thanks ;)