mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 17:07:15 +00:00
39 lines
1 KiB
JSON
39 lines
1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Electron: Main",
|
|
"protocol": "inspector",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
|
"env": {
|
|
"TABBY_DEV": "1"
|
|
},
|
|
"runtimeArgs": [
|
|
"--remote-debugging-port=9223",
|
|
"app"
|
|
],
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
|
|
}
|
|
},
|
|
{
|
|
"name": "Electron: Renderer",
|
|
"type": "pwa-chrome",
|
|
"request": "attach",
|
|
"port": 9223,
|
|
"webRoot": "${workspaceFolder}",
|
|
"timeout": 30000
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Electron: All",
|
|
"configurations": [
|
|
"Electron: Main",
|
|
"Electron: Renderer"
|
|
]
|
|
}
|
|
]
|
|
}
|