@@ -1540,7 +1540,7 @@ namespace ts {
15401540 host : ParseConfigHost ,
15411541 basePath : string ,
15421542 configFileName : string ,
1543- getCanonicalFileName : ( fileName : string ) => string ,
1543+ getCanonicalFileName : GetCanonicalFileName ,
15441544 resolutionStack : Path [ ] ,
15451545 errors : Push < Diagnostic > ,
15461546 ) : ParsedTsconfig {
@@ -1588,7 +1588,7 @@ namespace ts {
15881588 json : any ,
15891589 host : ParseConfigHost ,
15901590 basePath : string ,
1591- getCanonicalFileName : ( fileName : string ) => string ,
1591+ getCanonicalFileName : GetCanonicalFileName ,
15921592 configFileName : string | undefined ,
15931593 errors : Push < Diagnostic >
15941594 ) : ParsedTsconfig {
@@ -1619,7 +1619,7 @@ namespace ts {
16191619 sourceFile : JsonSourceFile ,
16201620 host : ParseConfigHost ,
16211621 basePath : string ,
1622- getCanonicalFileName : ( fileName : string ) => string ,
1622+ getCanonicalFileName : GetCanonicalFileName ,
16231623 configFileName : string | undefined ,
16241624 errors : Push < Diagnostic >
16251625 ) : ParsedTsconfig {
@@ -1688,7 +1688,7 @@ namespace ts {
16881688 extendedConfig : string ,
16891689 host : ParseConfigHost ,
16901690 basePath : string ,
1691- getCanonicalFileName : ( fileName : string ) => string ,
1691+ getCanonicalFileName : GetCanonicalFileName ,
16921692 errors : Push < Diagnostic > ,
16931693 createDiagnostic : ( message : DiagnosticMessage , arg1 ?: string ) => Diagnostic ) {
16941694 extendedConfig = normalizeSlashes ( extendedConfig ) ;
@@ -1713,7 +1713,7 @@ namespace ts {
17131713 extendedConfigPath : Path ,
17141714 host : ts . ParseConfigHost ,
17151715 basePath : string ,
1716- getCanonicalFileName : ( fileName : string ) => string ,
1716+ getCanonicalFileName : GetCanonicalFileName ,
17171717 resolutionStack : Path [ ] ,
17181718 errors : Push < Diagnostic > ,
17191719 ) : ParsedTsconfig | undefined {
0 commit comments