de795ea233
TypeScript compiler will now build to ES2015 code and modules. Babili is used to minify ES2015 code, providing an initial optimization that we couldn't previously get just from Uglify. Uses Babel to convert ES2015 to UMD/ES5 code, and Uglify to minimize the output.
15 lines
481 B
TypeScript
15 lines
481 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
|
|
*/
|
|
|
|
// This file is not used to build this module. It is only used during editing
|
|
// by the TypeScript language service and during build for verification. `ngc`
|
|
// replaces this file with production index.ts when it rewrites private symbol
|
|
// names.
|
|
|
|
export * from './public_api';
|