mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
ce8fe7c8da
Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"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"
|
|
},
|
|
"args": [".", "--url=https://corporate.symphony.com"],
|
|
"env": {
|
|
"ELECTRON_DEBUGGING": "true",
|
|
"ELECTRON_DEV": "true"
|
|
},
|
|
"outputCapture": "std",
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceFolder}/lib/**/*.js"
|
|
]
|
|
},
|
|
{
|
|
"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"
|
|
},
|
|
"args": [".", "--url=${workspaceFolder}/src/demo/index.html"],
|
|
"env": {
|
|
"ELECTRON_DEBUGGING": "true",
|
|
"ELECTRON_DEV": "true"
|
|
},
|
|
"outputCapture": "std",
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceFolder}/lib/**/*.js"
|
|
]
|
|
}
|
|
]
|
|
}
|