Skip to content

Commit 8d35b16

Browse files
committed
Fix lint errors
1 parent c84b7b6 commit 8d35b16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/editorServices.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,13 +1518,13 @@ namespace ts.server {
15181518
do {
15191519
const canonicalSearchPath = normalizedPathToPath(searchPath, this.currentDirectory, this.toCanonicalFileName);
15201520
const tsconfigFileName = asNormalizedPath(combinePaths(searchPath, "tsconfig.json"));
1521-
let tsResult = action(tsconfigFileName, combinePaths(canonicalSearchPath, "tsconfig.json"));
1521+
const tsResult = action(tsconfigFileName, combinePaths(canonicalSearchPath, "tsconfig.json"));
15221522
if (tsResult === ConfigFileActionResult.Return) {
15231523
return tsconfigFileName;
15241524
}
15251525

15261526
const jsconfigFileName = asNormalizedPath(combinePaths(searchPath, "jsconfig.json"));
1527-
let jsResult = action(jsconfigFileName, combinePaths(canonicalSearchPath, "jsconfig.json"));
1527+
const jsResult = action(jsconfigFileName, combinePaths(canonicalSearchPath, "jsconfig.json"));
15281528
if (jsResult === ConfigFileActionResult.Return) {
15291529
return jsconfigFileName;
15301530
}

0 commit comments

Comments
 (0)