import * as webpack from 'webpack';
...
transforms.webpackConfiguration = (config: webpack.Configuration) => {
patchWebpackConfig(config, options);
While reviewing code within an Angular project, I came across the snippet above. One particular aspect that caught my attention is the argument being passed to the anonymous function: webpack.Configuration. Despite conducting some research, I was unable to locate documentation on this specific datatype and unfortunately cannot delve deeper into the implementation details on my local setup. Any insights or helpful resources pertaining to this matter would be greatly appreciated.
Cheers!