-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[OGUI-1578] Added vscode debugging configuration in launch.js (#2667)
* Added vscode debugging configuration in launch.js * .gitignore exception made for .vscode/launch.js. * Added --inspect parameter to npm run dev command to enable node debugging from the browser. * 'launch.json' modified, added Windows platform specific path options.
- Loading branch information
1 parent
70ad3d3
commit f6f381d
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,6 @@ build | |
tobject2json.node | ||
*/.nyc* | ||
*/test/integration/test-config* | ||
.vscode | ||
.vscode/* | ||
!.vscode/launch.json | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "[ilg] run dev", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"run-script", | ||
"dev" | ||
], | ||
"localRoot": "${workspaceFolder}/InfoLogger/", | ||
"runtimeExecutable": "npm", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"outputCapture": "std", | ||
"type": "node", | ||
"windows": { | ||
"localRoot": "${workspaceFolder}\\InfoLogger\\" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters