mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a857f2975e
* Switches away from the ESM-incompatible & unmaintained `ts_devserver` to `http_server`. This is the canonical server maintained by dev-infra * Switches tests away from CommonJS specific logic. e.g. require.resolve * Adjusts tests to work with Protractor spec bundling (Protractor does not support ESM execution, but we want to take ESM-written specs) * Reworks playground and benchmarks to use `app_bundle` and `esbuild` instead of loading hundreds of files individually. This also makes tests more stable and more aligned with real applications. PR Close #48538
17 lines
491 B
TypeScript
17 lines
491 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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" />
|