-
Notifications
You must be signed in to change notification settings - Fork 314
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
Initial write-up of performance best practices and diagnostics. #231
Conversation
My investigations so far have led me to believe that editor and batch slowness are investigated in completely different ways. Editor steps are largely written up at the link above (but could probably use some extra notes for VS Code users) and batch steps are still being developed. |
The `--incremental` flag allows TypeScript to save state from the last compilation to a `.tsbuildinfo` file. | ||
This file is used to figure out the smallest set of files that might to be re-checked/re-emitted since it last ran, much like how TypeScript's `--watch` mode works. | ||
|
||
Incremental compiles are enabled by default when using the `composite` flag for project references, but can bring the same speed-ups for any project that opts in. |
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.
One thing I realized subsequent to writing this post:
https://blog.johnnyreilly.com/2019/09/start-me-up-ts-loader-meet-tsbuildinfo.html
Is that .tsbuildinfo
is only emitted in a projectReferences
setup. That was surprising to me and to a bunch of others that commented on various ts-loader issues after the fact.
I don't know if it will ever be available standalone? Either way, good that the knowledge is captured here 😀
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.
From looking at the commits it sounds like as of recently it's emitted, but only in --watch
mode. (but maybe @sheetalkamat and @andrewbranch can clarify).
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.
Sorry, I don't understand the question. I'm pretty sure --watch
works on non-composite projects, so I'm not sure what "standalone" means. Maybe there's no API exposing it?
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.
Initial thoughts.
Performance.md
Outdated
|
||
You can read up more about project references here. <!-- TODO --> | ||
|
||
# Configuring `tsconfig.json` |
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.
TypeScript compilation is often performed with other build tools in mind - especially when writing web apps that might involve a bundler. | ||
While we can only make suggestions for a few build tools, ideally these techniques can be generalized. | ||
|
||
## Concurrent Type-Checking |
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.
I'm not sure I understand the purpose of this paragraph.
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.
If you have slow type-checks that impact watch mode, you you might benefit from running type-checking concurrently.
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.
So the scenario is that you're using watch mode to keep your output directory up-to-date, rather than to find errors in your code? And this paragraph says you can have both using a plugin?
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.
Yes
|
||
There are certain ways to get hints of what might be going wrong. | ||
|
||
## `extendedDiagnostics` |
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.
Obviously, this doesn't apply when the problem is editor responsiveness.
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.
Why wouldn't it? Knowing that program construction time is the bottleneck might be a nice early hint.
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.
Well, the most obvious reason would be that you can't just tack --extendedDiagnostics
onto an existing command line - you have to figure out how to invoke tsc for your project and then add the switch. It would also help to know which of these line items apply only to tsc.
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.
Normally when investigating performance I quickly glace at the tsserver log to see there aren't any too frequent DirectoryWatcher's invocations that are causing these (in that case its a configuration issue or a bug) otherwise I do run tsc --extendedDiagnostics
to see whats going on... In these cases its either checkTime
that is bottleneck or Program Time
if there are too many modules and resolution taking longer.. That's what gives me hint on what to check next.
It's not always obvious what settings a compilation is being run with when running `tsc`, especially given that `tsconfig.json`s can extend other configuration files. | ||
`showConfig` can explain what `tsc` will calculate for an invocation. | ||
|
||
```sh |
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.
Note that the output will look like a tsconfig file but can't necessarily be used as one, since it may include command-line only options.
|
||
## `traceResolution` | ||
|
||
Running with `traceResolution` can help explain *why* a file was included in a compilation. |
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.
Is the resulting file actionable?
|
||
Some questions to keep in mind: | ||
|
||
* Is there a major difference in build times between `tsc` and the build tool with TypeScript integration? |
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.
Note that --extendedDiagnostics
does not report the elapsed time, esp if there are multiple projects.
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.
What's that "especially" hint at?
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.
AFAIK, it prints per-project totals but not a cumulative total (or any of the overhead involved in ordering the projects for building).
Gonna try to get instructions in for TSServer traces in VS later on. |
At this point this is incomplete, but I'm looking for some feedback.
The current TODOs are
<!-- TODO -->
comment within the markdownThings that I want feedback on