Skip to content

Commit

Permalink
updated launch setting for new node version
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoe123 committed Jan 18, 2022
1 parent ffe8e3f commit 82abe34
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run npm server",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"name": "Server",
"program": "${workspaceFolder}/src_server/index.js",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/src_server"
"restart": true,
"runtimeExecutable": "nodemon",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"command": "npm start",
Expand Down

0 comments on commit 82abe34

Please sign in to comment.