Files
part2/.vscode/launch.json
2023-01-19 00:33:33 +08:00

26 lines
858 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "part2",
"type": "node",
"request": "launch",
// "skipFiles": [
// "<node_internals>/**"
// ],
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
// "program": "${workspaceFolder}\\index.js"
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args": [
"."
],
"outputCapture": "std"
}
]
}