/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/build/src/utils/normalize-source-maps.ts
25 строк
868 B
Charles Lyding
feat(@angular/build): allow control of source map sources content for application builds
25 мар 2025, 19:35
25 мар 2025, 19:35
c1de633
Код
Авторство
О чём код?
/** * @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 { SourceMapClass, SourceMapUnion } from '../builders/application/schema'; export function normalizeSourceMaps(sourceMap: SourceMapUnion): SourceMapClass { const scripts = typeof sourceMap === 'object' ? sourceMap.scripts : sourceMap; const styles = typeof sourceMap === 'object' ? sourceMap.styles : sourceMap; const hidden = (typeof sourceMap === 'object' && sourceMap.hidden) || false; const vendor = (typeof sourceMap === 'object' && sourceMap.vendor) || false; const sourcesContent = typeof sourceMap === 'object' ? sourceMap.sourcesContent : sourceMap; return { vendor, hidden, scripts, styles, sourcesContent, }; }