diff options
author | Marvin Hagemeister <marvin@deno.com> | 2024-08-14 13:42:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 11:42:12 +0000 |
commit | 3b4cbc189c6548c10a9e3ffc04453bdf5b4c0bf0 (patch) | |
tree | b56d82b2c2570f776c36b1063eb7325c84c4659d /tools/core_import_map.json | |
parent | b325bf0a35baea1275f3be89506e34040bf35b21 (diff) |
chore: fix wrong extension in lsp mappings (#25037)
The mappings were pointing to non-existant `.ts` files. The actual
extension of these is `.js`.
Diffstat (limited to 'tools/core_import_map.json')
-rw-r--r-- | tools/core_import_map.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/core_import_map.json b/tools/core_import_map.json index d31821fb7..726163e08 100644 --- a/tools/core_import_map.json +++ b/tools/core_import_map.json @@ -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", |