Projektmanagement-Tool/.vscode/launch.json
2025-05-03 21:28:33 +02:00

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"
}
]
}