DEV Community

[Comment from a deleted post]
Collapse
 
telmotrooper profile image
Telmo "Trooper" • Edited

Won't this approach make it a lot harder to debug your code, since you can't simply put breakpoints in your TypeScript code as it's not what's actually running? You also don't get hot reloading. I think this will only make development harder...

Edit: You can get hot reloading with "nodemon", but it doesn't reload your browser automatically.

Edit2: You can get debugging by using 'ts-node', which runs your TypeScript code directly.