diff options
Diffstat (limited to 'cli/tools/check.rs')
-rw-r--r-- | cli/tools/check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/check.rs b/cli/tools/check.rs index 4ec677f8f..a2bfb9d9b 100644 --- a/cli/tools/check.rs +++ b/cli/tools/check.rs @@ -427,7 +427,7 @@ fn get_tsc_roots( // now walk the graph that only includes the fast check dependencies while let Some(specifier) = pending.pop_front() { - let Some(module) = graph.get(&specifier) else { + let Some(module) = graph.get(specifier) else { continue; }; if let Some(entry) = maybe_get_check_entry(module, check_js) { |