18 lines
521 B
JSON
18 lines
521 B
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Electron",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd",
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
|
|
},
|
|
"args": ["electron/main.js"],
|
|
"outputCapture": "std",
|
|
"preLaunchTask": "build-angular"
|
|
}
|
|
]
|
|
}
|