You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running typedoc --ignoreCompilerErrors --out docs src/ on the TypeDoc repo, 23% of the time is spent calling getSemanticDiagnostics. The output of this function is used (all errors are printed), but it doesn't make a difference in the generated documentation, and would be a major speed boost if removed.
Suggested Solution
Only call getSemanticDiagnostics if ignoreCompilerErrors is not specified.
The text was updated successfully, but these errors were encountered:
Problem
When running
typedoc --ignoreCompilerErrors --out docs src/
on the TypeDoc repo, 23% of the time is spent callinggetSemanticDiagnostics
. The output of this function is used (all errors are printed), but it doesn't make a difference in the generated documentation, and would be a major speed boost if removed.Suggested Solution
Only call
getSemanticDiagnostics
ifignoreCompilerErrors
is not specified.The text was updated successfully, but these errors were encountered: