File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1518,13 +1518,13 @@ namespace ts.server {
1518
1518
do {
1519
1519
const canonicalSearchPath = normalizedPathToPath ( searchPath , this . currentDirectory , this . toCanonicalFileName ) ;
1520
1520
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" ) ) ;
1522
1522
if ( tsResult === ConfigFileActionResult . Return ) {
1523
1523
return tsconfigFileName ;
1524
1524
}
1525
1525
1526
1526
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" ) ) ;
1528
1528
if ( jsResult === ConfigFileActionResult . Return ) {
1529
1529
return jsconfigFileName ;
1530
1530
}
You can’t perform that action at this time.
0 commit comments