UNPKG

@angular-devkit/build-angular

Version:
22 lines (21 loc) 692 B
import { AngularCompilerPlugin } from '@ngtools/webpack'; import { WebpackConfigOptions } from '../build-options'; export declare function getNonAotConfig(wco: WebpackConfigOptions): { module: { rules: { test: RegExp; loader: string; }[]; }; plugins: AngularCompilerPlugin[]; }; export declare function getAotConfig(wco: WebpackConfigOptions, i18nExtract?: boolean): { module: { rules: { test: RegExp; use: any[]; }[]; }; plugins: AngularCompilerPlugin[]; }; export declare function getTypescriptWorkerPlugin(wco: WebpackConfigOptions, workerTsConfigPath: string): AngularCompilerPlugin;