Skip to content

Commit 3b4cbc1

Browse files
chore: fix wrong extension in lsp mappings (#25037)
The mappings were pointing to non-existant `.ts` files. The actual extension of these is `.js`.
1 parent b325bf0 commit 3b4cbc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/core_import_map.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@
198198
"node:timers": "../ext/node/polyfills/timers.ts",
199199
"node:timers/promises": "../ext/node/polyfills/timers/promises.ts",
200200
"node:tls": "../ext/node/polyfills/tls.ts",
201-
"node:tty": "../ext/node/polyfills/tty.ts",
201+
"node:tty": "../ext/node/polyfills/tty.js",
202202
"node:url": "../ext/node/polyfills/url.ts",
203203
"node:util": "../ext/node/polyfills/util.ts",
204204
"node:util/types": "../ext/node/polyfills/util/types.ts",
205205
"node:v8": "../ext/node/polyfills/v8.ts",
206-
"node:vm": "../ext/node/polyfills/vm.ts",
206+
"node:vm": "../ext/node/polyfills/vm.js",
207207
"ext:deno_node/wasi.ts": "../ext/node/polyfills/wasi.ts",
208208
"node:worker_threads": "../ext/node/polyfills/worker_threads.ts",
209209
"node:zlib": "../ext/node/polyfills/zlib.ts",

0 commit comments

Comments
 (0)