mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
f49d955601
This commit disables source mapping of errors for standalone binaries. Since applying source maps relies on using file fetcher infrastructure it's not feasible to use it for standalone binaries that are not supposed to use that infrastructure.
9 lines
86 B
TypeScript
9 lines
86 B
TypeScript
function boom() {
|
|
throw new Error("boom!");
|
|
}
|
|
|
|
function foo() {
|
|
boom();
|
|
}
|
|
|
|
foo();
|