You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+8
Original file line number
Diff line number
Diff line change
@@ -420,6 +420,7 @@ This project comes pre-configured with everything you need to get started.
420
420
When you hit `F5` in VS Code, it looks for a top level `.vscode` folder with a `launch.json` file.
421
421
422
422
You can debug in the following ways:
423
+
***Launch Program** - transpile typescript to javascript via npm build, then launch the app with the debugger attached on startup
423
424
***Attach by Process ID** - run the project in debug mode. This is mostly identical to the "Node.js: Attach by Process ID" template with one minor change.
424
425
We added `"protocol": "inspector"` which tells VS Code that we're using the latest version of Node which uses a new debug protocol.
425
426
***Jest Current File** - have a Jest test file open and active in VSCode, then debug this specific file by setting break point. All tests are not run.
@@ -428,6 +429,13 @@ We added `"protocol": "inspector"` which tells VS Code that we're using the late
428
429
In this file, you can tell VS Code exactly what you want to do:
0 commit comments