Skip to content

Commit

Permalink
chore: Add more VSCode launch options
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Mar 16, 2023
1 parent c2ba89e commit 09df260
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Start Blocks Conversion Tool",
"type": "node",
"request": "launch",
"runtimeArgs": [
"./src/server.js",
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
},
{
"name": "Run Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--experimental-vm-modules",
"${workspaceRoot}/node_modules/jest/bin/jest.js",
"--watch",
"--watchAll"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
},
{
"name": "Debug Jest Tests",
"type": "node",
Expand Down

0 comments on commit 09df260

Please sign in to comment.