1
1
mirror of https://github.com/bitgapp/eqMac.git synced 2024-11-25 20:51:06 +03:00
eqMac/ui/.vscode/launch.json

45 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2020-04-04 21:15:38 +03:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Client",
"type": "chrome",
"request": "launch",
2020-10-18 19:25:41 +03:00
"url": "http://localhost:8080/#",
2020-04-04 21:15:38 +03:00
"port": 9223,
"sourceMaps": true,
"diagnosticLogging": true,
"webRoot": "${workspaceRoot}",
"runtimeArgs": [
"--disable-session-crashed-bubble",
"--disable-infobars"
],
"userDataDir": "${workspaceRoot}/.vscode/chrome"
},
{
"name": "Debug",
"type": "chrome",
"request": "attach",
"port": 9000,
2020-10-18 19:25:41 +03:00
"url": "http://localhost:8080/#",
2020-04-04 21:15:38 +03:00
"webRoot": "${workspaceRoot}/src"
}, {
"name": "Deploy (production)",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/ts-node/dist/bin.js",
"args": ["ci/base.ts"],
"cwd": "${workspaceRoot}/../",
"protocol": "inspector",
"env": {
"CI_COMMIT_SHA": "latest",
"CI_COMMIT_MESSAGE": "deploying from VSCode (production) --deploy=ui",
"CI_COMMIT_REF_NAME": "master"
},
"outputCapture": "std"
}
]
}