5bccff0d7a
Tsickle transforms typescript code, which can change the location of code. This can cause issues such as runtime stack traces reporting that errors were raised on the incorrect line in the orginal source. This change replaces the DecoratorDownlevelCompilerHost and the TsickleCompilerHost with tsickle's TsickleCompilerHost, which automatically composes tsickle's source maps with typescript's source maps, so that line numbers are correctly reported at runtime. PR Close #14150
16 lines
486 B
TypeScript
16 lines
486 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. 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.io/license
|
|
*/
|
|
|
|
export {MetadataWriterHost} from './src/compiler_host';
|
|
export {CodegenExtension, UserError, main} from './src/main';
|
|
|
|
export {default as AngularCompilerOptions} from './src/options';
|
|
export * from './src/cli_options';
|
|
export * from './src/collector';
|
|
export * from './src/schema';
|