Hi, I noticed the biggest necessary package to build Angular projects is @angular-devkit/build-angular which lets me use the default builders but I'm only targeting browser environments so I only really need @angular-devkit/build-angular:browser-esbuild (ESBuild seems to be smaller than Webpack when installed on it's own, only about 10 MiB).
I'm not sure if the 200 MiB size of @angular-devkit/build-angular with it's 62 dependencies is because it installs all the build targets or that it's just large in general but I thought installing only @angular-devkit/build-angular:browser-esbuild might help. Can this be done? If not, I guess I could always just define a custom builder that does what @angular-devkit/build-angular:browser-esbuild does but I'd have to figure out what it's dependencies are since the @angular-devkit/build-angular package's package.json just lists the dependencies for all builders?