Skip to content

Commit

Permalink
chore: fix wrong extension in lsp mappings (#25037)
Browse files Browse the repository at this point in the history
The mappings were pointing to non-existant `.ts` files. The actual
extension of these is `.js`.
  • Loading branch information
marvinhagemeister authored Aug 14, 2024
1 parent b325bf0 commit 3b4cbc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/core_import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@
"node:timers": "../ext/node/polyfills/timers.ts",
"node:timers/promises": "../ext/node/polyfills/timers/promises.ts",
"node:tls": "../ext/node/polyfills/tls.ts",
"node:tty": "../ext/node/polyfills/tty.ts",
"node:tty": "../ext/node/polyfills/tty.js",
"node:url": "../ext/node/polyfills/url.ts",
"node:util": "../ext/node/polyfills/util.ts",
"node:util/types": "../ext/node/polyfills/util/types.ts",
"node:v8": "../ext/node/polyfills/v8.ts",
"node:vm": "../ext/node/polyfills/vm.ts",
"node:vm": "../ext/node/polyfills/vm.js",
"ext:deno_node/wasi.ts": "../ext/node/polyfills/wasi.ts",
"node:worker_threads": "../ext/node/polyfills/worker_threads.ts",
"node:zlib": "../ext/node/polyfills/zlib.ts",
Expand Down

0 comments on commit 3b4cbc1

Please sign in to comment.