/** * @license MIT * 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 ts from 'typescript'; /** * Parses the config * @param tsconfigPath The path of the config file * @param basePath The base path * @returns The parsed config */ export declare function parseTsconfigFile(tsconfigPath: string, basePath: string): ts.ParsedCommandLine;