1
1
mirror of https://github.com/bitgapp/eqMac.git synced 2024-11-22 22:32:17 +03:00
eqMac/ui/.vscode/launch.json
2020-04-04 19:15:38 +01:00

45 lines
1.2 KiB
JSON

{
// 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",
"url": "http://localhost:4200/#",
"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,
"url": "http://localhost:4200/#",
"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"
}
]
}