-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize the size for tsbuildinfo #43155
Conversation
@typescript-bot pack this |
@typescript-bot pack this |
Heya @sheetalkamat, I've started to run the tarball bundle task on this PR at 41026d7. You can monitor the build here. |
Hey @sheetalkamat, I've packed this into an installable tgz. You can install it for testing by referencing it in your
and then running There is also a playground for this build and an npm module you can use via |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, I noticed a few minor nitpicks for the test runner
.../tscWatch/projectsWithReferences/when-referenced-project-uses-different-module-resolution.js
Outdated
Show resolved
Hide resolved
I tried this version in my project. Total Size: 14.9MB -> 1.0MB
|
Co-authored-by: Tobias Koppers <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please summarize the high-level changes? Pulling out numeric identifiers seems like an easy win - what else changed?
tests/baselines/reference/tsc/incremental/initial-build/noEmit-changes-composite.js
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My review was somewhat shallow, but the explanation made sense and I didn't notice obvious bugs.
This is simplified version of #43079 and additional optimizations for
tsbuildinfo
sizeChanges are:
fileNames
: new entry which is list of filenamestsbuildinfo
will encounter, index of the file name is used asfileId
everywherefileInfos
: is now a list instead of map.FileFnfo
is for the file at givenfileId
as indexaffectedFilesPendingEmit
also usefileId
instead of file namefileIds
thatreferenceMap
orexportedModulesMap
will use. Index of this list will be used asfileIdsListId
for reference mapreferenceMap
andexportedModulesMap
is converted to tuple array with first entry beingfileId
and second one beingfileIdsListId
tsbuildinfo
with 2 space indent, its emitted without spacestsbuildinfo
as areadable.baseline.txt
so that we can verify correctness easily