/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/compiler-cli/linker/babel/src/linker_plugin_options.ts
22 строки
618 B
Alan Agius
fix(compiler): remove TypeScript from linker (#61618)
26 май 2025, 11:46
26 май 2025, 11:46
e9fcbb8
Код
Авторство
О чём код?
/** * @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 {LinkerOptions} from '../..'; import {ReadonlyFileSystem} from '../../../src/ngtsc/file_system/src/types'; import {Logger} from '../../../src/ngtsc/logging'; export interface LinkerPluginOptions extends Partial<LinkerOptions> { /** * File-system, used to load up the input source-map and content. */ fileSystem: ReadonlyFileSystem; /** * Logger used by the linker. */ logger: Logger; }