Skip to content

Commit c515c05

Browse files
committed
incorporate feedback
1 parent 4329e1c commit c515c05

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/debugger/just-my-code.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,6 @@ A *.natstepfilter* file is an XML file with this syntax:
249249
## <a name="BKMK_JavaScript_Just_My_Code"></a> JavaScript Just My Code
250250

251251
<a name="BKMK_JS_User_and_non_user_code"></a>
252-
For Just My Code settings in Visual Studio, you can use the `skipFiles` setting in *launch.json*. This works the same as the *launch.json* settings in VS Code. For more information, see [Skipping Uninteresting Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_skipping-uninteresting-code).
252+
For *.esproj* projects in Visual Studio 2022, Visual Studio Code uses a *launch.json* file to configure and customize the debugger. *launch.json* is a debugger configuration file.
253+
254+
Visual Studio attaches the debugger only to user code. For *.esproj* projects, you can configure user code (also called *Just My Code* settings) in Visual Studio using the `skipFiles` setting in *launch.json*. This works the same as the *launch.json* settings in VS Code. For more information about *skipFiles*, see [Skipping Uninteresting Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_skipping-uninteresting-code).

docs/javascript/debug-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ You can debug JavaScript and TypeScript code using Visual Studio. You can hit br
2626
::: moniker-end
2727

2828
::: moniker range=">=vs-2022"
29-
## Configure user code
29+
## Configure debugging
3030

3131
For *.esproj* projects in Visual Studio 2022, Visual Studio Code uses a *launch.json* file to configure and customize the debugger. *launch.json* is a debugger configuration file.
3232

33-
Visual Studio attaches the debugger only to user code. For *.esproj* projects, you can configure user code (also called *Just My Code* settings) in Visual Studio using the `skipFiles` setting in *launch.json*. This works the same as the *launch.json* settings in VS Code. For more information, see [Skipping Uninteresting Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_skipping-uninteresting-code).
33+
Visual Studio attaches the debugger only to user code. For *.esproj* projects, you can configure user code (also called *Just My Code* settings) in Visual Studio using the `skipFiles` setting in *launch.json*. This works the same as the *launch.json* settings in VS Code. For more information about *skipFiles* and other debugger configuration options, see [Skipping Uninteresting Code](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_skipping-uninteresting-code) and [Launch configuration attributes](https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_launch-configuration-attributes).
3434
::: moniker-end
3535

3636
## Debug server-side script

0 commit comments

Comments
 (0)