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
{{ message }}
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
Is there a way to configure a vscode debug launch session to simply enable the --experimental-repl-await flag behind the scenes?
I tried adding it to the runtime args of the node VM running the debugged code, but it didn't change the behaviour, although I can prove the flag works on that VM interactively (allows top-level await).
However, I may not understand exactly how the debug console session comes into existence. If it's not a repl in a node VM then that may be why I can't enable it. Are there other flags which control the debug-session VM?
microsoft/vscode#38316
Need to detect when the console input starts with
await
, wrap in an async IIFE, and setawaitPromise
on Runtime.evaluate to true.The text was updated successfully, but these errors were encountered: