SDServer/.vscode/launch.json
2024-08-30 15:37:33 +08:00

23 lines
479 B
JSON

{
"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": ["."],
"env": {
"NODE_ENV": "dev"
},
"outputCapture": "std",
"sourceMaps": true,
"restart": true
}
]
}