From d560fd7b11be4af1fadf0618a70ceb295a11e123 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 26 Dec 2022 17:24:25 +0900 Subject: [PATCH] chore(npm): fix typo in local.rs (#17186) --- cli/npm/resolvers/local.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/npm/resolvers/local.rs b/cli/npm/resolvers/local.rs index 9cfe61b8eb..5d8367e736 100644 --- a/cli/npm/resolvers/local.rs +++ b/cli/npm/resolvers/local.rs @@ -174,7 +174,7 @@ impl InnerNpmPackageResolver for LocalNpmPackageResolver { } } - // if doing type resolution, check for the existance of a @types package + // if doing type resolution, check for the existence of a @types package if mode.is_types() && !name.starts_with("@types/") { let sub_dir = join_package_name(current_folder, &types_package_name(name));