Project

General

Profile

1
/**
2
 * @license
3
 * Copyright Google Inc. 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 'reflect-metadata';
9
import * as ts from 'typescript';
10
export declare function readConfiguration(project: string, basePath: string, existingOptions?: ts.CompilerOptions): {
11
    parsed: ts.ParsedCommandLine;
12
    ngOptions: any;
13
};
14
export declare function performCompilation(basePath: string, files: string[], options: ts.CompilerOptions, ngOptions: any, consoleError?: (s: string) => void, tsCompilerHost?: ts.CompilerHost): 0 | 1;
15
export declare function main(args: string[], consoleError?: (s: string) => void): number;
(16-16/30)