42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}\\app\\index.js",
|
|
"stopOnEntry": false,
|
|
"args": [],
|
|
"cwd": "${workspaceRoot}",
|
|
//"preLaunchTask": "tsc: build - tsconfig.json",
|
|
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd",
|
|
|
|
"runtimeArgs": [
|
|
".",
|
|
"--enable-logging"
|
|
],
|
|
|
|
"env": {}, "console": "internalConsole",
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceFolder}/**/*.js"
|
|
]
|
|
},
|
|
{
|
|
"name": "Attach",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 5858,
|
|
"address": "localhost",
|
|
"restart": false,
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceFolder}/**/*.js"
|
|
],
|
|
"localRoot": "${workspaceRoot}",
|
|
"remoteRoot": null
|
|
}
|
|
]
|
|
} |