Last active
November 22, 2018 05:36
-
-
Save buildmotion/854d676f8f536a62b18c053c5cb13916 to your computer and use it in GitHub Desktop.
A launch configuration to debug an Angular Schematic using node.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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