1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

fix: make "suggest.autoImports" to switch completions from external modules (#19845)

This commit is contained in:
Kyoh 2023-08-02 22:22:00 +09:00 committed by GitHub
parent 9d1c32945c
commit 9fa328f656
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2363,10 +2363,10 @@ impl Inner {
tsc::ImportModuleSpecifierEnding::Index,
),
include_automatic_optional_chain_completions: Some(true),
include_completions_for_import_statements: Some(
include_completions_for_import_statements: Some(true),
include_completions_for_module_exports: Some(
self.config.workspace_settings().suggest.auto_imports,
),
include_completions_for_module_exports: Some(true),
include_completions_with_object_literal_method_snippets: Some(
use_snippets,
),