2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 12:47:54 -04:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2019-06-06 15:22:32 -04:00
|
|
|
import {NodeJSFileSystem, setFileSystem} from './src/ngtsc/file_system';
|
|
|
|
|
2016-11-15 11:49:23 -05:00
|
|
|
export {AotCompilerHost, AotCompilerHost as StaticReflectorHost, StaticReflector, StaticSymbol} from '@angular/compiler';
|
2017-09-13 19:55:42 -04:00
|
|
|
export {VERSION} from './src/version';
|
2016-12-13 20:35:06 -05:00
|
|
|
|
2017-09-26 16:31:59 -04:00
|
|
|
export * from './src/metadata';
|
2017-06-09 17:50:57 -04:00
|
|
|
export * from './src/transformers/api';
|
|
|
|
export * from './src/transformers/entry_points';
|
|
|
|
|
2017-08-31 13:02:27 -04:00
|
|
|
export * from './src/perform_compile';
|
2019-04-17 06:43:31 -04:00
|
|
|
export * from './src/tooling';
|
2017-06-09 17:50:57 -04:00
|
|
|
|
2019-10-17 11:36:04 -04:00
|
|
|
// TODO(tbosch): remove this once usages in G3 are changed to `CompilerOptions`
|
2017-09-13 19:55:42 -04:00
|
|
|
export {CompilerOptions as AngularCompilerOptions} from './src/transformers/api';
|
2017-11-02 17:49:38 -04:00
|
|
|
|
|
|
|
export {ngToTsDiagnostic} from './src/transformers/util';
|
2019-01-29 14:33:37 -05:00
|
|
|
export {NgTscPlugin} from './src/ngtsc/tsc_plugin';
|
2021-03-15 18:23:03 -04:00
|
|
|
export {NgtscProgram} from './src/ngtsc/program';
|
2019-06-06 15:22:32 -04:00
|
|
|
|
|
|
|
setFileSystem(new NodeJSFileSystem());
|