From 87866b6226c419159b47e1d74acc508efc25f5ad Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Tue, 9 Jul 2024 00:12:29 +0200 Subject: [PATCH] chore: add hint for mapping internal modules (#559) --- runtime/manual/references/contributing/index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/manual/references/contributing/index.md b/runtime/manual/references/contributing/index.md index f9a8f9e68..841b1e405 100644 --- a/runtime/manual/references/contributing/index.md +++ b/runtime/manual/references/contributing/index.md @@ -53,10 +53,12 @@ cargo test --features hmr integration::node_unit_tests::os_test Also remember to reference this feature flag in your editor settings. For VSCode users, combine the following into your workspace file: -```json +```jsonc { "settings": { - "rust-analyzer.cargo.features": ["hmr"] + "rust-analyzer.cargo.features": ["hmr"], + // Adds support for resolving internal `ext:*` modules + "deno.importMap": "tools/core_import_map.json" } } ```