6709db9677
Note that this allows Angular to depend on the entirety of the ES2015 API, not just our restricted subset. This change is needed because our copy of the subset was out-of-date, and prevents us using ES2015 target in dev mode. This is a subset of #27738 PR Close #28570
18 lines
531 B
TypeScript
18 lines
531 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 contains all ambient imports needed to compile the modules/ source code
|
|
|
|
/// <reference types="hammerjs" />
|
|
/// <reference types="jasmine" />
|
|
/// <reference types="jasminewd2" />
|
|
/// <reference types="node" />
|
|
/// <reference types="zone.js" />
|
|
/// <reference lib="es2015" />
|
|
/// <reference path="./system.d.ts" />
|