aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorStanley Yip <stanley_yip@brown.edu>2020-01-17 15:45:05 -0500
committerStanley Yip <stanley_yip@brown.edu>2020-01-17 15:45:05 -0500
commit8667498929fce14295658f89c8787a1a9b1ce468 (patch)
treec3d03768bf2b8d23e438479c67141fae43c63e1e /.vscode
parent4b0a056f1afaf20dea4be64c7b238748d99ad12e (diff)
parent9620d149a2051bc9b42a037b1c65b61deebd11fa (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into pen
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json18
1 files changed, 16 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index d09ba3435..77e139dbd 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -3,7 +3,8 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
- "configurations": [{
+ "configurations": [
+ {
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
@@ -16,6 +17,19 @@
]
},
{
+ "type": "chrome",
+ "request": "launch",
+ "name": "Launch Chromium against localhost",
+ "sourceMaps": true,
+ "breakOnLoad": true,
+ "url": "http://localhost:1050/login",
+ "webRoot": "${workspaceFolder}",
+ "runtimeExecutable": "/usr/bin/chromium",
+ "runtimeArgs": [
+ "--experimental-modules"
+ ]
+ },
+ {
"type": "firefox",
"request": "launch",
"name": "Launch Firefox against localhost",
@@ -38,7 +52,7 @@
"request": "attach",
"name": "Typescript Server",
"protocol": "inspector",
- "port": 9229,
+ "port": 9230,
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
},