UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

12 lines (11 loc) 432 B
import * as ts from 'typescript'; import { TypeScriptBinaryLoader } from '../typescript-loader'; export declare class TsConfigProvider { private readonly typescriptLoader; constructor(typescriptLoader: TypeScriptBinaryLoader); getByConfigFilename(configFilename: string): { options: ts.CompilerOptions; fileNames: string[]; projectReferences: readonly ts.ProjectReference[] | undefined; }; }