diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-05-03 20:28:22 -0400 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-05-03 20:28:22 -0400 |
| commit | 189eeefbb3e7f3d96d1d140beff74fcffe305786 (patch) | |
| tree | b2e0afdfb74e833e22241a077db662c033fa8e59 /.vscode | |
| parent | 0c28cabf0d496be24da3e5ee414a8fcd925250ab (diff) | |
Added debugging support and added removing of unused keys in Solr
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index fb91a1080..e92a4949a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,6 +15,15 @@ }, { "type": "node", + "request": "attach", + "name": "Typescript Server", + "protocol": "inspector", + "port": 9229, + "localRoot": "${workspaceFolder}", + "remoteRoot": "." + }, + { + "type": "node", "request": "launch", "name": "Mocha Tests", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", |
