diff options
-rw-r--r-- | .vscode/launch.json | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index f2c9832..66cb9dd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,17 +5,18 @@ "version": "0.2.0", "configurations": [ { - "type": "node", + "type": "pwa-node", + "name": "Launch Example Server", "request": "launch", - "name": "Launch Program", + "runtimeArgs": [ + "run-script", + "start" + ], + "runtimeExecutable": "npm", "skipFiles": [ "<node_internals>/**" ], "cwd": "${workspaceFolder}/example", - "program": "${workspaceFolder}/example/index.js", - "outFiles": [ - "${workspaceFolder}/**/*.js" - ] } ] } |