aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorEleanor Eng <eleanor_eng@brown.edu>2019-06-04 10:29:02 -0400
committerEleanor Eng <eleanor_eng@brown.edu>2019-06-04 10:29:02 -0400
commit376ebd44a16dfa04aacd3582e87767aed1a01f36 (patch)
tree3a9e623cf6689e1ea6975954596bf5bda6303249 /.vscode/launch.json
parent8f14e688220096ccecfd1aa0dd54b00e48f92270 (diff)
parent6f49d067b58caf6297f7ae7687cf05b627c27a1d (diff)
merge with master
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json51
1 files changed, 41 insertions, 10 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index fb91a1080..3b6549767 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -14,6 +14,47 @@
"webRoot": "${workspaceFolder}",
},
{
+ "type": "firefox",
+ "request": "launch",
+ "name": "Launch Firefox against localhost",
+ "sourceMaps": "client",
+ "reAttach": true,
+ "url": "http://localhost:1050/login",
+ "webRoot": "${workspaceFolder}",
+ },
+ {
+ "type": "chrome",
+ "request": "launch",
+ "name": "Launch Chrome against Dash server",
+ "sourceMaps": true,
+ "breakOnLoad": true,
+ "url": "http://dash-web.eastus2.cloudapp.azure.com:1050/login",
+ "webRoot": "${workspaceFolder}",
+ },
+ {
+ "type": "node",
+ "request": "attach",
+ "name": "Typescript Server",
+ "protocol": "inspector",
+ "port": 9229,
+ "localRoot": "${workspaceFolder}",
+ "remoteRoot": "."
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Current TS File",
+ "runtimeExecutable": "npx",
+ "runtimeArgs": [
+ "ts-node-dev",
+ "--nolazy",
+ "--inspect",
+ "--",
+ "${relativeFile}"
+ ],
+ "port": 9229
+ },
+ {
"type": "node",
"request": "launch",
"name": "Mocha Tests",
@@ -47,15 +88,5 @@
"internalConsoleOptions": "openOnSessionStart",
"protocol": "inspector"
},
- {
- "type": "node",
- "request": "launch",
- "name": "Launch via NPM",
- "runtimeExecutable": "npm",
- "runtimeArgs": [
- "start"
- ],
- "port": 9229
- }
]
} \ No newline at end of file