mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-21 14:02:43 +08:00
Some TypeScript files may previously have been emitted twice during builds when using the Angular compiler esbuild plugin used within the esbuild-based browser application builder. It did not cause any build problems. However, it may have caused builds to take longer than expected. This was caused by an incorrect comparison of the transformed source file and the original source file found within the TypeScript program. Comparisons during emit now compare only original source files which avoids the issue with the emitted files checks.