angular-cli
angular-cli copied to clipboard
fix(@angular/build): allow direct bundling of TSX files with application builder
When using the application builder with isolatedModules, the bundler will directly handle TypeScript transpilation and bundling. Previously, any input TSX files were loaded by the bundler as TS files. This difference caused errors when attempting to process the files since the syntax differs between TSX and TS. The appropriate loader will now be used if the input file is TSX in this situation.
Closes #28640