Status: Test has not been completed.
If config file is at root of project:
- only open the folders that you will be working in for your editor.
is it smart enough to know to only check that folder? - does number of files open in the editor matter?
- does it matter if you have multiple config files? (one in each folder)
a. The test ... make a significantly annoying typescript project.
b. run the experiments.
Report findings here: https://news.ycombinator.com/item?id=25199070
https://github.com/microsoft/TypeScript-wiki/blob/main/Performance-Tracing.md
{ # how to find hotspots (low performant types in your codebase)
rm -rf tracing_output_folder;
npx tsc -p tsconfig.json --generateTrace tracing_output_folder;
npx @typescript/analyze-trace tracing_output_folder;
}
Related links:
- https://news.ycombinator.com/item?id=25199070
- https://www.reddit.com/r/typescript/comments/xzy20q/how_to_find_the_type_that_is_causing_performance/
This is an "infer from usage test"
https://www.bajorunas.tech/blog/typescript-compiler-performance