File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments