diff options
| author | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-08-10 17:12:58 -0400 |
|---|---|---|
| committer | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-08-10 17:12:58 -0400 |
| commit | 9dae453967183b294bf4f7444b948023a1d52d39 (patch) | |
| tree | 986f4a79b8c5b92013a70b5ecba704bbba4a7ff8 /.vscode/launch.json | |
| parent | c80d0763c87d1965f451bbd7b31d8da8228dc048 (diff) | |
| parent | 513dcaa2d8c86f1cb5236ce89062cace6f418d1b (diff) | |
Merge branch 'master' into data-visualization-view-naafi
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 48 |
1 files changed, 14 insertions, 34 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index a7c30ca1e..ce9f50f67 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,9 +12,7 @@ "breakOnLoad": true, "url": "http://localhost:1050/login", "webRoot": "${workspaceFolder}", - "runtimeArgs": [ - "--experimental-modules" - ] + "runtimeArgs": ["--experimental-modules"] }, { "type": "chrome", @@ -25,18 +23,21 @@ "url": "http://localhost:1050/login", "webRoot": "${workspaceFolder}", "runtimeExecutable": "/usr/bin/chromium", - "runtimeArgs": [ - "--experimental-modules" - ] + "runtimeArgs": ["--experimental-modules"] }, { "type": "firefox", "request": "launch", "name": "Launch Firefox against localhost", - //"sourceMaps": "client", "reAttach": true, "url": "http://localhost:1050/login", "webRoot": "${workspaceFolder}", + "pathMappings": [ + { + "url": "webpack://dash/src", + "path": "${workspaceFolder}/src" + } + ] }, { "type": "chrome", @@ -45,8 +46,7 @@ "sourceMaps": true, "breakOnLoad": true, "url": "https://browndash.com/login", - //"url": "http://dash-web.eastus2.cloudapp.azure.com:1050/login", - "webRoot": "${workspaceFolder}", + "webRoot": "${workspaceFolder}" }, { "type": "node", @@ -62,13 +62,7 @@ "request": "launch", "name": "Current TS File", "runtimeExecutable": "npx", - "runtimeArgs": [ - "ts-node-dev", - "--nolazy", - "--inspect", - "--", - "${relativeFile}" - ], + "runtimeArgs": ["ts-node-dev", "--nolazy", "--inspect", "--", "${relativeFile}"], "port": 9229 }, { @@ -76,14 +70,7 @@ "request": "launch", "name": "Mocha Tests", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", - "args": [ - "-r", - "ts-node/register", - "--timeout", - "999999", - "--colors", - "${workspaceFolder}/test/**/*.ts" - ], + "args": ["-r", "ts-node/register", "--timeout", "999999", "--colors", "${workspaceFolder}/test/**/*.ts"], "console": "integratedTerminal", "internalConsoleOptions": "openOnSessionStart", "protocol": "inspector" @@ -93,17 +80,10 @@ "request": "launch", "name": "Mocha Current File", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", - "args": [ - "-r", - "ts-node/register", - "--timeout", - "999999", - "--colors", - "${file}" - ], + "args": ["-r", "ts-node/register", "--timeout", "999999", "--colors", "${file}"], "console": "integratedTerminal", "internalConsoleOptions": "openOnSessionStart", "protocol": "inspector" - }, + } ] -}
\ No newline at end of file +} |
