Skip to content

Commit b5dc4da

Browse files
committed
feat: update snippets for config resolution, add tool completion
Fixes #1997 Also borrows some logic from Python to add a completion item to let users pick a Node.js tool that they can run, from their node_modules/.bin folder ![](https://memes.peet.io/img/24-08-8b1001ca-93a8-4ec3-be17-f8641eea61b7.png)
1 parent cc722b5 commit b5dc4da

14 files changed

+616
-238
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he
44

55
## Nightly (only)
66

7+
- feat: add node tool picker completion for launch.json ([#1997](https://github.com/microsoft/vscode-js-debug/issues/1997))
78
- fix: process attachment with `--inspect=:1234` style ([#2063](https://github.com/microsoft/vscode-js-debug/issues/2063))
89

910
## v1.93 (August 2024)

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ async function compileTs({
228228
bundle: true,
229229
platform: 'node',
230230
format: 'cjs',
231-
target: 'node18',
231+
target: 'node20',
232232
minify,
233233
});
234234

@@ -262,7 +262,7 @@ async function compileTs({
262262
library,
263263
isInVsCode,
264264
nodePackages,
265-
target = 'node18',
265+
target = 'node20',
266266
} of packages
267267
) {
268268
todo.push(

0 commit comments

Comments
 (0)