Skip to content

Commit

Permalink
build: update vscode debug config
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed May 27, 2021
1 parent cb79f8d commit 928e324
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
{
// 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",
"type": "pwa-node",
"request": "launch",
"name": "Debug",
"args": ["${workspaceFolder}\\generated\\api\\index.js"],
"protocol": "inspector",
"runtimeArgs": ["run-script", "start"],
"name": "Debugger",
"runtimeExecutable": "npm",
"skipFiles": ["<node_internals>/**", "node_modules/tslib/**"],
"internalConsoleOptions": "openOnSessionStart",
"env": {
"NODE_ENV": "development"
},
"console": "internalConsole",
"outputCapture": "std"
"outputCapture": "std",
"outFiles": ["${workspaceFolder}/generated/api/**/*.js"]
}
]
}

0 comments on commit 928e324

Please sign in to comment.