diff options
| author | laurawilsonri <laura_wilson@brown.edu> | 2019-02-24 14:37:07 -0500 |
|---|---|---|
| committer | laurawilsonri <laura_wilson@brown.edu> | 2019-02-24 14:37:07 -0500 |
| commit | f7b46167a7fd5d7ecf560dbd72e7d3295ba6c0c9 (patch) | |
| tree | cc96c12c49e6c03c98b0f0e6f642e0902948283b /.vscode | |
| parent | 3ad38f0445178bdfe025e4f6da60f68f03876f56 (diff) | |
| parent | d9d55e422826da1fe87aa7973c92e54bc0c99f02 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into improveText
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/launch.json | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 9a0a9afb4..8aa197fa5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,11 @@ "sourceMaps": true, "breakOnLoad": true, "url": "http://localhost:1050", - "webRoot": "${workspaceFolder}" + "webRoot": "${workspaceFolder}", + "skipFiles": [ + "${workspaceRoot}/node_modules/**/*.js", + "${workspaceRoot}/node_modules/**/*.ts", + ] }, { "type": "node", @@ -47,5 +51,15 @@ "internalConsoleOptions": "openOnSessionStart", "protocol": "inspector" }, + { + "type": "node", + "request": "launch", + "name": "Launch via NPM", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "start" + ], + "port": 9229 + } ] }
\ No newline at end of file |
