Skip to content

Instantly share code, notes, and snippets.

@mikesimps
Created August 25, 2018 16:29
Show Gist options
  • Save mikesimps/a843fa688a0c4985f5482b521c93dfca to your computer and use it in GitHub Desktop.
Save mikesimps/a843fa688a0c4985f5482b521c93dfca to your computer and use it in GitHub Desktop.
Example of VS Code launch.json config to Debug sfdx oclif plugin
"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