You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to run the compiler with the equiv of -sourcemaps, and then somehow store that output in a way that the source map URL would be able to refer back to sourcemap content without having to do a actual URL fetch? (i.e. base64 encoding the sourcemap and using it as the sourcemap URI?)
The text was updated successfully, but these errors were encountered:
I don't know if the original TS compiler in typescript.js can generate sourcemaps, and even if it can, it will definitely decrease performance. And where should the sourcemaps be stored?
Personally, I think that the outputted JS code is readable enough and can be easily tracked in any inputted TS file.
Typescript now supports source mapping. Sure, you can easily debug without mapping. This takes time and is tedious. Engineers don't like tedium. (or at least they shouldn't)
Would it be possible to run the compiler with the equiv of -sourcemaps, and then somehow store that output in a way that the source map URL would be able to refer back to sourcemap content without having to do a actual URL fetch? (i.e. base64 encoding the sourcemap and using it as the sourcemap URI?)
The text was updated successfully, but these errors were encountered: