diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-07-03 22:00:37 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-07-03 22:00:37 +1000 |
commit | 31b57c0c763d2a571504cc9c644b4c45f8613bec (patch) | |
tree | 73da9d65e4ea03805f4be9015304710fe917e09c | |
parent | e4a71e40ce2dd95815293052fe63157f57a52584 (diff) |
add vscode debug
-rw-r--r-- | .vscode/launch.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 291dcce..c1725d9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -123,5 +123,16 @@ ], "program": "${workspaceFolder}/bin/mr2osc.mjs", "args": ["dist/conflate/mr_explodeUnitFromNumber.geojson"] + }, + { + "type": "pwa-node", + "request": "launch", + "name": "bin/mCoopDiff", + "skipFiles": [ + "<node_internals>/**" + ], + "program": "${workspaceFolder}/bin/mrCoopDiff.js", + "args": ["dist/conflate/mr_explodeUnitFromNumber.geojson", "dist/conflate/mr_explodeUnitFromNumber.html"] + } ] } |