The built in browser debugger is incredibly good. As long as the transpilation is simple and matches JS semantics you can still use the debugger. I haven't seen good debugging tools when using languages more distant from JS but I'd love to know if they've become viable.
smt88|1 year ago
For the languages that target wasm instead, there are different debugging stories. Kotlin's is very good, Rust's is pretty immature.
int_19h|1 year ago
Source maps work great for TS because it is just "JavaScript with types" at this point.