Skip to content

Commit c4a80b2

Browse files
author
Andy
authored
Merge pull request #13363 from Microsoft/lint
Fix linting
2 parents df8cb9d + c1b55a9 commit c4a80b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/moduleNameResolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ namespace ts {
421421
trace(host, Diagnostics.Resolving_module_0_from_1, moduleName, containingFile);
422422
}
423423
const containingDirectory = getDirectoryPath(containingFile);
424-
let perFolderCache = cache && cache.getOrCreateCacheForDirectory(containingDirectory);
424+
const perFolderCache = cache && cache.getOrCreateCacheForDirectory(containingDirectory);
425425
let result = perFolderCache && perFolderCache[moduleName];
426426

427427
if (result) {

0 commit comments

Comments
 (0)