We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using deno run webserver.ts directly, the error stack looks like this:
deno run webserver.ts
{ "errStack": [ "Error: test error", " at router (router.ts:11:11)", " at webserver.ts:44:17" ] }
When used deno bundle or deno compile, the error stack looks like this:
deno bundle
deno compile
{ "errStack": [ "Error: test error", " at router (file://$deno$/bundle.js:8446:15)", " at file://$deno$/bundle.js:8490:21" ] }
It would be very helpful if the stack information of the ts file can also be available after compilation.
Maybe it is related to #4499.
The text was updated successfully, but these errors were encountered:
Duplicate of #4499 plus #8577, part of #8824
Sorry, something went wrong.
No branches or pull requests
When using
deno run webserver.ts
directly, the error stack looks like this:When used
deno bundle
ordeno compile
, the error stack looks like this:It would be very helpful if the stack information of the ts file can also be available after compilation.
Maybe it is related to #4499.
The text was updated successfully, but these errors were encountered: