manual
manual copied to clipboard
Error in the debugging section?
https://deno.land/[email protected]/getting_started/debugging_your_code#chrome-devtools
You might notice that DevTools pauses execution on the first line of
_constants.tsinstead offile_server.ts. This is expected behavior caused by the way ES modules are evaluated in JavaScript (_constants.tsis left-most, bottom-most dependency offile_server.tsso it is evaluated first).
In my system, the DevTools pauses execution on os.ts instead of _constants.ts:
I'm using Deno 1.26.0 and Chrome 106.
Related: https://github.com/denoland/deno/issues/13908