UNPKG

@angular-devkit/build-angular

Version:
204 lines (203 loc) 5.43 kB
export interface Schema { /** * Which external dependencies to bundle into the bundle. By default, all of node_modules * will be bundled. */ bundleDependencies?: BundleDependenciesUnion; /** * Delete the output path before building. */ deleteOutputPath?: boolean; /** * URL where files will be deployed. */ deployUrl?: string; /** * Exclude the listed external dependencies from being bundled into the bundle. Instead, the * created bundle relies on these dependencies to be available during runtime. */ externalDependencies?: string[]; /** * Extract all licenses in a separate file, in the case of production builds only. */ extractLicenses?: boolean; /** * Replace compilation source files with other compilation source files in the build. */ fileReplacements?: FileReplacement[]; /** * Run the TypeScript type checker in a forked process. */ forkTypeChecker?: boolean; /** * Localization file to use for i18n. * @deprecated Use 'locales' object in the project metadata instead. */ i18nFile?: string; /** * Format of the localization file specified with --i18n-file. * @deprecated No longer needed as the format will be determined automatically. */ i18nFormat?: string; /** * Locale to use for i18n. * @deprecated Use 'localize' instead. */ i18nLocale?: string; /** * How to handle missing translations for i18n. */ i18nMissingTranslation?: I18NMissingTranslation; /** * List of additional NgModule files that will be lazy loaded. Lazy router modules will be * discovered automatically. * @deprecated 'SystemJsNgModuleLoader' is deprecated, and this is part of its usage. Use * 'import()' syntax instead. */ lazyModules?: string[]; localize?: Localize; /** * The name of the main entry-point file. */ main: string; /** * Use file name for lazy loaded chunks. */ namedChunks?: boolean; /** * Enables optimization of the build output. */ optimization?: OptimizationUnion; /** * Define the output filename cache-busting hashing mode. */ outputHashing?: OutputHashing; /** * Path where output will be placed. */ outputPath: string; /** * Enable and define the file watching poll time period in milliseconds. */ poll?: number; /** * Do not use the real path when resolving modules. If unset then will default to `true` if * NodeJS option --preserve-symlinks is set. */ preserveSymlinks?: boolean; /** * Log progress to the console while building. */ progress?: boolean; /** * The path where style resources will be placed, relative to outputPath. */ resourcesOutputPath?: string; /** * Show circular dependency warnings on builds. */ showCircularDependencies?: boolean; /** * Output sourcemaps. */ sourceMap?: SourceMapUnion; /** * Generates a 'stats.json' file which can be analyzed using tools such as * 'webpack-bundle-analyzer'. */ statsJson?: boolean; /** * Options to pass to style preprocessors */ stylePreprocessorOptions?: StylePreprocessorOptions; /** * The name of the TypeScript configuration file. */ tsConfig: string; /** * Adds more details to output logging. */ verbose?: boolean; /** * Run build when files change. */ watch?: boolean; } /** * Which external dependencies to bundle into the bundle. By default, all of node_modules * will be bundled. */ export declare type BundleDependenciesUnion = boolean | BundleDependenciesEnum; export declare enum BundleDependenciesEnum { All = "all", None = "none" } export interface FileReplacement { replace?: string; replaceWith?: string; src?: string; with?: string; } /** * How to handle missing translations for i18n. */ export declare enum I18NMissingTranslation { Error = "error", Ignore = "ignore", Warning = "warning" } export declare type Localize = string[] | boolean; /** * Enables optimization of the build output. */ export declare type OptimizationUnion = boolean | OptimizationClass; export interface OptimizationClass { /** * Enables optimization of the scripts output. */ scripts?: boolean; /** * Enables optimization of the styles output. */ styles?: boolean; } /** * Define the output filename cache-busting hashing mode. */ export declare enum OutputHashing { All = "all", Bundles = "bundles", Media = "media", None = "none" } /** * Output sourcemaps. */ export declare type SourceMapUnion = boolean | SourceMapClass; export interface SourceMapClass { /** * Output sourcemaps used for error reporting tools. */ hidden?: boolean; /** * Output sourcemaps for all scripts. */ scripts?: boolean; /** * Output sourcemaps for all styles. */ styles?: boolean; /** * Resolve vendor packages sourcemaps. */ vendor?: boolean; } /** * Options to pass to style preprocessors */ export interface StylePreprocessorOptions { /** * Paths to include. Paths will be resolved to project root. */ includePaths?: string[]; }