Make builder not depend on information from dts emit about really needed modules #57800
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Earlier we use to use information from d.ts emit about all the module symbols that the file used so we could only mark subset of actual import/references etc to invalidate semantic diagnostics and d.ts emit for.
Given that d.ts emit is changing, we cant deterministically get this information any more so we have to invalidate it for all references
This removes use of exportMap from builder and buildInfo
8d3a02f Is just test update that fixes the incorrect information about signature (marks as version use even though it computed signature if signature and version are same)
dcdc654 actual change of not depending on
exportedModulesFromDeclarationEmit
and baselines that only change buildInfo to removeexportsMap
entry7b29ccb are all baselines that got updated because of using extra set of files to invalidate.
Precursor for #57681