Skip to content

Instantly share code, notes, and snippets.

@yychen
Created February 27, 2024 08:45
Show Gist options
  • Save yychen/48f81b111a81dc7890a78fa3c87f3ddf to your computer and use it in GitHub Desktop.
Save yychen/48f81b111a81dc7890a78fa3c87f3ddf to your computer and use it in GitHub Desktop.
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/hello.js",
"console": "integratedTerminal"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment