Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: recommend import_map.json instead of import-map.json #340

Merged
merged 1 commit into from
Feb 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]/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": {
Expand Down