Skip to content

Instantly share code, notes, and snippets.

@jasonzhouu
Created January 27, 2020 04:15
Show Gist options
  • Save jasonzhouu/540332fb01871889adf04226a5cc3b41 to your computer and use it in GitHub Desktop.
Save jasonzhouu/540332fb01871889adf04226a5cc3b41 to your computer and use it in GitHub Desktop.
vscode config
{
// 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>/**",
"${workspaceFolder}/node_modules/**/*.js",
],
"program": "${workspaceFolder}/bin/www",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment