UNPKG

567 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 type { Compiler } from 'webpack';
9export interface FindTestsPluginOptions {
10 include?: string[];
11 exclude?: string[];
12 workspaceRoot: string;
13 projectSourceRoot: string;
14}
15export declare class FindTestsPlugin {
16 private options;
17 private compilation;
18 constructor(options: FindTestsPluginOptions);
19 apply(compiler: Compiler): void;
20}