Форк Rambox
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
1.1 KiB

{
// 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": "Hamsket: Main",
"type": "node",
"request": "launch",
"protocol": "inspector",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"args": [
"--remote-debugging-port=9223",
"build/production/Hamsket"
],
"outFiles": [ "${workspaceFolder}/build/production/**/*.js" ]
},
{
"name": "Hamsket: Renderer",
"type": "chrome",
"request": "attach",
"port": 9223,
"webRoot": "${workspaceFolder}",
"timeout": 30000,
},
],
"compounds": [
{
"name": "Hamsket: All",
"configurations": [
"Hamsket: Main",
"Hamsket: Renderer"
]
}
]
}