2020-04-13 22:48:53 -05:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2020-06-04 01:13:28 -05:00
|
|
|
{
|
|
|
|
"name": "dev",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
|
|
|
|
"windows": {
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.exe"
|
|
|
|
},
|
2020-11-06 00:43:29 -06:00
|
|
|
"args": [
|
|
|
|
"."
|
|
|
|
],
|
2020-06-04 01:13:28 -05:00
|
|
|
"env": {
|
|
|
|
"ELECTRON_DEBUGGING": "true",
|
|
|
|
"ELECTRON_DEV": "true"
|
|
|
|
},
|
|
|
|
"outputCapture": "std",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/lib/**/*.js"
|
|
|
|
]
|
|
|
|
},
|
2020-04-13 22:48:53 -05:00
|
|
|
{
|
|
|
|
"name": "corp",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
|
|
|
|
"windows": {
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.exe"
|
|
|
|
},
|
2020-11-06 00:43:29 -06:00
|
|
|
"args": [
|
|
|
|
".",
|
|
|
|
"--url=https://corporate.symphony.com"
|
|
|
|
],
|
2020-04-13 22:48:53 -05:00
|
|
|
"env": {
|
|
|
|
"ELECTRON_DEBUGGING": "true",
|
|
|
|
"ELECTRON_DEV": "true"
|
|
|
|
},
|
|
|
|
"outputCapture": "std",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/lib/**/*.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2020-06-04 01:13:28 -05:00
|
|
|
"name": "mana",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
|
|
|
|
"windows": {
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.exe"
|
|
|
|
},
|
2020-11-06 00:43:29 -06:00
|
|
|
"args": [
|
|
|
|
".",
|
|
|
|
"--url=https://local-dev.symphony.com:9090"
|
|
|
|
],
|
2020-06-04 01:13:28 -05:00
|
|
|
"env": {
|
|
|
|
"ELECTRON_DEBUGGING": "true",
|
|
|
|
"ELECTRON_DEV": "true"
|
|
|
|
},
|
|
|
|
"outputCapture": "std",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/lib/**/*.js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
{
|
|
|
|
"name": "demo",
|
2020-04-13 22:48:53 -05:00
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron",
|
|
|
|
"windows": {
|
|
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.exe"
|
|
|
|
},
|
2020-11-06 00:43:29 -06:00
|
|
|
"args": [
|
|
|
|
".",
|
|
|
|
"--url=file://${workspaceFolder}/src/demo/index.html"
|
|
|
|
],
|
2020-04-13 22:48:53 -05:00
|
|
|
"env": {
|
|
|
|
"ELECTRON_DEBUGGING": "true",
|
|
|
|
"ELECTRON_DEV": "true"
|
|
|
|
},
|
|
|
|
"outputCapture": "std",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/lib/**/*.js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|