project-tsconfig-paths.d.ts 509 B

12345678910111213141516
  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. */
  8. import { Tree } from '@angular-devkit/schematics';
  9. /**
  10. * Gets all tsconfig paths from a CLI project by reading the workspace configuration
  11. * and looking for common tsconfig locations.
  12. */
  13. export declare function getProjectTsConfigPaths(tree: Tree): {
  14. buildPaths: string[];
  15. testPaths: string[];
  16. };