Skip to content

Instantly share code, notes, and snippets.

@katelynsills
Created April 22, 2020 01:46
Show Gist options
  • Save katelynsills/b710622a3ff458b03f0e4f464c58ba19 to your computer and use it in GitHub Desktop.
Save katelynsills/b710622a3ff458b03f0e4f464c58ba19 to your computer and use it in GitHub Desktop.
Sample Launch.json for VSCODE
{
// 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": "Run Test",
"program": "${workspaceFolder}/TEST_RUNNER_FILEPATH_HERE",
"runtimeExecutable": "node",
"runtimeArgs": [
"-r", "esm"
],
"skipFiles": [
"${workspaceFolder}/node_modules/*/.js",
"<node_internals>/*/.js",
]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment