Created
August 25, 2018 16:29
-
-
Save mikesimps/a843fa688a0c4985f5482b521c93dfca to your computer and use it in GitHub Desktop.
Example of VS Code launch.json config to Debug sfdx oclif plugin
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
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Debug Compare Files", | |
| "localRoot": "${workspaceFolder}", | |
| "env": {"NODE_OPTIONS": "--inspect-brk"}, | |
| "program": "${workspaceFolder}/bin/run", | |
| "args": [ | |
| "collate:compare:files", | |
| "-p", "${workspaceFolder}/xml1.xml", | |
| "-s", "${workspaceFolder}/xml2.xml" | |
| ], | |
| "autoAttachChildProcesses": true, | |
| "timeout":100000 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment