@@ -77,7 +77,7 @@ export interface ResolutionWithFailedLookupLocations {
77
77
78
78
interface ResolutionWithResolvedFileName {
79
79
resolvedFileName : string | undefined ;
80
- packagetId ?: PackageId ;
80
+ packageId ?: PackageId ;
81
81
}
82
82
83
83
/** @internal */
@@ -516,20 +516,20 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD
516
516
host ,
517
517
loader === resolveModuleName as unknown ?
518
518
resolved ?. resolvedFileName ?
519
- resolved . packagetId ?
519
+ resolved . packageId ?
520
520
Diagnostics . Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4 :
521
521
Diagnostics . Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3 :
522
522
Diagnostics . Reusing_resolution_of_module_0_from_1_found_in_cache_from_location_2_it_was_not_resolved :
523
523
resolved ?. resolvedFileName ?
524
- resolved . packagetId ?
524
+ resolved . packageId ?
525
525
Diagnostics . Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3_with_Package_ID_4 :
526
526
Diagnostics . Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_successfully_resolved_to_3 :
527
527
Diagnostics . Reusing_resolution_of_type_reference_directive_0_from_1_found_in_cache_from_location_2_it_was_not_resolved ,
528
528
name ,
529
529
containingFile ,
530
530
getDirectoryPath ( containingFile ) ,
531
531
resolved ?. resolvedFileName ,
532
- resolved ?. packagetId && packageIdToString ( resolved . packagetId )
532
+ resolved ?. packageId && packageIdToString ( resolved . packageId )
533
533
) ;
534
534
}
535
535
}
@@ -560,19 +560,19 @@ export function createResolutionCache(resolutionHost: ResolutionCacheHost, rootD
560
560
host ,
561
561
loader === resolveModuleName as unknown ?
562
562
resolved ?. resolvedFileName ?
563
- resolved . packagetId ?
563
+ resolved . packageId ?
564
564
Diagnostics . Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 :
565
565
Diagnostics . Reusing_resolution_of_module_0_from_1_of_old_program_it_was_successfully_resolved_to_2 :
566
566
Diagnostics . Reusing_resolution_of_module_0_from_1_of_old_program_it_was_not_resolved :
567
567
resolved ?. resolvedFileName ?
568
- resolved . packagetId ?
568
+ resolved . packageId ?
569
569
Diagnostics . Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2_with_Package_ID_3 :
570
570
Diagnostics . Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_successfully_resolved_to_2 :
571
571
Diagnostics . Reusing_resolution_of_type_reference_directive_0_from_1_of_old_program_it_was_not_resolved ,
572
572
name ,
573
573
containingFile ,
574
574
resolved ?. resolvedFileName ,
575
- resolved ?. packagetId && packageIdToString ( resolved . packagetId )
575
+ resolved ?. packageId && packageIdToString ( resolved . packageId )
576
576
) ;
577
577
}
578
578
}
0 commit comments