@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
19 lines (18 loc) • 522 B
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { Compiler } from 'webpack';
export interface OccurrencesPluginOptions {
aot?: boolean;
scriptsOptimization?: boolean;
}
export declare class OccurrencesPlugin {
private options;
constructor(options: OccurrencesPluginOptions);
apply(compiler: Compiler): void;
private countOccurrences;
}