From 8b9c9a0ebbd8aecfc4bd5704e20a1a595006b562 Mon Sep 17 00:00:00 2001 From: Liam Murphy Date: Sun, 21 Feb 2021 10:26:15 +1100 Subject: [PATCH] docs: recommend import_map.json instead of import-map.json --- README.md | 4 ++-- package.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bb364eb1..7d93e931 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ extension has the following configuration options: [Import maps](https://deno.land/manual/linking_to_external_code/import_maps) provide a way to "relocate" modules based on their specifiers. The path can either be relative to the workspace, or an absolute path. _string, default - `null`, examples: `./import-map.json`, `/path/to/import-map.json`, - `C:\path\to\import-map.json`_ + `null`, examples: `./import_map.json`, `/path/to/import_map.json`, + `C:\path\to\import_map.json`_ - `deno.lint`: Controls if linting information will be provided by the Deno Language Server. _boolean, default `false`_ - `deno.unstable`: Controls if code will be type checked with Deno's unstable diff --git a/package.json b/package.json index a6f432f1..9b1f309c 100644 --- a/package.json +++ b/package.json @@ -130,9 +130,9 @@ "markdownDescription": "The file path to an import map. This is the equivalent to using `--import-map` on the command line.\n\n[Import maps](https://deno.land/manual@v1.6.0/linking_to_external_code/import_maps) provide a way to \"relocate\" modules based on their specifiers. The path can either be relative to the workspace, or an absolute path.\n\n**Not recommended to be set globally.**", "scope": "window", "examples": [ - "./import-map.json", - "/path/to/import-map.json", - "C:\\path\\to\\import-map.json" + "./import_map.json", + "/path/to/import_map.json", + "C:\\path\\to\\import_map.json" ] }, "deno.unstable": {