Skip to content

Commit

Permalink
chore: update launch.json.example
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong committed Aug 16, 2018
1 parent 79683b2 commit 71971f8
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .vscode/launch.json.example
Expand Up @@ -37,7 +37,24 @@
"stopOnEntry": false
},
{
"name": "Karma Chrome",
"name": "Egg Debug",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"debug",
"--",
"--inspect-brk"
],
"console": "integratedTerminal",
"restart": true,
"protocol": "auto",
"port": 9229,
"autoAttachChildProcesses": true
},
{
"name": "Chrome Debug with Karma",
"type": "chrome",
"request": "attach",
"address": "localhost",
Expand All @@ -61,23 +78,6 @@
"${workspaceFolder}/test"
],
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
"request": "launch",
"name": "Egg Debug",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"debug",
"--",
"--inspect-brk"
],
"console": "integratedTerminal",
"restart": true,
"protocol": "auto",
"port": 9229,
"autoAttachChildProcesses": true
}
]
}

0 comments on commit 71971f8

Please sign in to comment.