SDServer/.vscode/launch.json

23 lines
479 B
JSON
Raw Permalink Normal View History

2024-08-24 15:29:04 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args": ["."],
2024-08-30 07:37:33 +00:00
"env": {
"NODE_ENV": "dev"
},
2024-08-24 15:29:04 +00:00
"outputCapture": "std",
"sourceMaps": true,
"restart": true
}
]
}