diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/core_import_map.json | 2 | ||||
-rw-r--r-- | tools/ops.d.ts | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/core_import_map.json b/tools/core_import_map.json index bdf9e066b..d31821fb7 100644 --- a/tools/core_import_map.json +++ b/tools/core_import_map.json @@ -1,5 +1,7 @@ { "imports": { + "ext:core/mod.js": "../../deno_core/core/core.d.ts", + "ext:core/ops": "./ops.d.ts", "ext:deno_broadcast_channel/01_broadcast_channel.js": "../ext/broadcast_channel/01_broadcast_channel.js", "ext:deno_cache/01_cache.js": "../ext/cache/01_cache.js", "ext:deno_canvas/01_image.js": "../ext/canvas/01_image.js", diff --git a/tools/ops.d.ts b/tools/ops.d.ts new file mode 100644 index 000000000..8acb1e588 --- /dev/null +++ b/tools/ops.d.ts @@ -0,0 +1,4 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + +// This file is intentionally empty - that puts this file into script mode, +// which then allows all symbols to be imported from the file. |