1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00
denoland-deno/cli/lsp
Bartek Iwańczuk c6c8c91a6e
feat: embed import map in the config file (#17478)
This commit changes handling of config file to enable
specifying "imports" and "scopes" objects effectively making
the configuration file an import map.

"imports" and "scopes" take precedence over "importMap" configuration,
but have lower priority than "--importmap" CLI flag.

Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
Co-authored-by: David Sherret <dsherret@gmail.com>
2023-01-25 21:13:40 +01:00
..
testing refactor(cli/tools): move flag and config logic to CliOptions (#17008) 2023-01-07 15:22:09 -05:00
analysis.rs refactor(cli): fewer clones (#17450) 2023-01-16 15:27:41 -05:00
cache.rs feat: support node built-in module imports (#17264) 2023-01-24 09:05:54 -05:00
capabilities.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
client.rs chore: add copyright_checker tool and add the missing copyright (#17285) 2023-01-13 16:51:32 +09:00
code_lens.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
completions.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
config.rs fix(lsp): treat empty string config value as None (#17227) 2023-01-03 16:59:48 +01:00
diagnostics.rs feat: suggest adding a "node:" prefix for bare specifiers that look like built-in Node modules (#17519) 2023-01-24 15:14:49 -05:00
documents.rs feat: support node built-in module imports (#17264) 2023-01-24 09:05:54 -05:00
language_server.rs feat: embed import map in the config file (#17478) 2023-01-25 21:13:40 +01:00
logging.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
lsp_custom.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
mod.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
parent_process_checker.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
path_to_regex.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
performance.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
README.md feat(lsp): improve registry completion suggestions (#13023) 2021-12-14 06:24:11 +11:00
refactor.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
registries.rs refactor(permissions): add PermissionsContainer struct for internal mutability (#17134) 2023-01-07 17:25:34 +01:00
repl.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
semantic_tokens.rs chore: use rustfmt imports_granularity option (#17421) 2023-01-14 23:18:58 -05:00
text.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
tsc.rs feat: support node built-in module imports (#17264) 2023-01-24 09:05:54 -05:00
urls.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00

Deno Language Server

The Deno Language Server provides a server implementation of the Language Server Protocol which is specifically tailored to provide a Deno view of code. It is integrated into the command line and can be started via the lsp sub-command.

This documentation has been moved to the Deno manual.