Skip to content

Instantly share code, notes, and snippets.

@henkin
Created February 7, 2024 06:14
Show Gist options
  • Save henkin/87e9742b2e73b2c9d12d430d64a1ff87 to your computer and use it in GitHub Desktop.
Save henkin/87e9742b2e73b2c9d12d430d64a1ff87 to your computer and use it in GitHub Desktop.
visual studio code
{
// 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}/index.js",
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\s+(https?://\\S+)",
"uriFormat": "%s/"
},
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment