"use strict"; /** * @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.io/license */ Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeBrowserSchema = void 0; const normalize_asset_patterns_1 = require("./normalize-asset-patterns"); const normalize_file_replacements_1 = require("./normalize-file-replacements"); const normalize_optimization_1 = require("./normalize-optimization"); const normalize_source_maps_1 = require("./normalize-source-maps"); function normalizeBrowserSchema(root, projectRoot, sourceRoot, options) { const normalizedSourceMapOptions = normalize_source_maps_1.normalizeSourceMaps(options.sourceMap || false); return { ...options, assets: normalize_asset_patterns_1.normalizeAssetPatterns(options.assets || [], root, projectRoot, sourceRoot), fileReplacements: normalize_file_replacements_1.normalizeFileReplacements(options.fileReplacements || [], root), optimization: normalize_optimization_1.normalizeOptimization(options.optimization), sourceMap: normalizedSourceMapOptions, preserveSymlinks: options.preserveSymlinks === undefined ? process.execArgv.includes('--preserve-symlinks') : options.preserveSymlinks, statsJson: options.statsJson || false, budgets: options.budgets || [], scripts: options.scripts || [], styles: options.styles || [], stylePreprocessorOptions: { includePaths: (options.stylePreprocessorOptions && options.stylePreprocessorOptions.includePaths) || [], }, // Using just `--poll` will result in a value of 0 which is very likely not the intention // A value of 0 is falsy and will disable polling rather then enable // 500 ms is a sensible default in this case poll: options.poll === 0 ? 500 : options.poll, }; } exports.normalizeBrowserSchema = normalizeBrowserSchema;