1 | import * as ts from 'typescript';
|
2 | import { TypeScriptBinaryLoader } from '../typescript-loader';
|
3 | export declare class TsConfigProvider {
|
4 | private readonly typescriptLoader;
|
5 | constructor(typescriptLoader: TypeScriptBinaryLoader);
|
6 | getByConfigFilename(configFilename: string): {
|
7 | options: ts.CompilerOptions;
|
8 | fileNames: string[];
|
9 | projectReferences: readonly ts.ProjectReference[] | undefined;
|
10 | };
|
11 | }
|