mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
22 lines
520 B
JSON
22 lines
520 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Hyper",
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
|
|
"program": "${workspaceRoot}/app/index.js",
|
|
"protocol": "inspector"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "cli",
|
|
"runtimeExecutable": "node",
|
|
"program": "${workspaceRoot}/bin/cli.js",
|
|
"args": ["--help"],
|
|
"protocol": "inspector"
|
|
}
|
|
]
|
|
}
|