UNPKG

608 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { CompilerOptions } from 'typescript';
9export interface TypeScriptPathsPluginOptions extends Pick<CompilerOptions, 'paths' | 'baseUrl'> {
10}
11export declare class TypeScriptPathsPlugin {
12 private options?;
13 constructor(options?: TypeScriptPathsPluginOptions | undefined);
14 update(options: TypeScriptPathsPluginOptions): void;
15 apply(resolver: import('enhanced-resolve').Resolver): void;
16}