Skip to content

Instantly share code, notes, and snippets.

@JohannesHoppe
Created February 10, 2017 12:22
Show Gist options
  • Save JohannesHoppe/43ddf37905851587e593028ec9990d14 to your computer and use it in GitHub Desktop.
Save JohannesHoppe/43ddf37905851587e593028ec9990d14 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}\\bin\\angular-cli-ghpages.js",
"stopOnEntry": false,
//"args": ["--repo=xxx", "--name=yyy", "--email=zzz", "--dir=../TMP/BookMonkey", "--branch=master"],
"args": ["--help"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment