I need to debug my node program by launching server.js first (not server.ts). This means, I want my typescript compiled first, but I don't want it to stop (abort) on typescript errors that I will fix later. Now, webstorm stops when I try and debug.
How can I make it keep going?

tsc ... || true?