UNPKG

ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

9 lines (8 loc) 441 B
import { InjectionToken, ValueProvider, Provider } from 'injection-js'; export declare const OPTIONS_TOKEN: InjectionToken<NgPackagrOptions>; export interface NgPackagrOptions { /** Whether or not ng-packagr will watch for file changes and perform an incremental build. */ watch?: boolean; } export declare const provideOptions: (options?: NgPackagrOptions) => ValueProvider; export declare const DEFAULT_OPTIONS_PROVIDER: Provider;