Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Last active November 22, 2018 05:36
Show Gist options
  • Save buildmotion/854d676f8f536a62b18c053c5cb13916 to your computer and use it in GitHub Desktop.
Save buildmotion/854d676f8f536a62b18c053c5cb13916 to your computer and use it in GitHub Desktop.
A launch configuration to debug an Angular Schematic using node.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/node_modules/@angular-devkit/schematics-cli/bin/schematics.js",
"args": [
".:my-full-schematic",
"--name=hello"
],
"outFiles": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment