mirror of
https://github.com/samuelthomas2774/nxapi.git
synced 2026-04-13 00:27:51 -05:00
53 lines
1.7 KiB
JSON
53 lines
1.7 KiB
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": "Debug Electron app",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
|
"osx": {
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron"
|
|
},
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/electron/dist/electron.exe"
|
|
},
|
|
"args": [
|
|
"dist/app/app-entry.cjs"
|
|
],
|
|
"outputCapture": "std",
|
|
"env": {
|
|
"DEBUG": "*,-express:*,-body-parser:*",
|
|
"DEBUG_COLORS": "1",
|
|
"FORCE_COLOR": "3"
|
|
},
|
|
"envFile": "${workspaceFolder}/.env"
|
|
},
|
|
{
|
|
"name": "Coral API proxy",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"cwd": "${workspaceFolder}",
|
|
"program": "bin/nxapi.js",
|
|
"args": [
|
|
"nso",
|
|
"http-server",
|
|
"--listen",
|
|
"[::1]:8080",
|
|
"--no-require-token"
|
|
],
|
|
"outputCapture": "std",
|
|
"env": {
|
|
"DEBUG": "*,-express:*,-body-parser:*",
|
|
"DEBUG_COLORS": "1",
|
|
"FORCE_COLOR": "3"
|
|
},
|
|
"envFile": "${workspaceFolder}/.env"
|
|
}
|
|
]
|
|
}
|