mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
d40ac2056e
This commit updates various places in the repo (mostly tests/examples) to drop all `.ngfactory` and `.ngsummary` imports as they are no longer needed in Ivy. PR Close #44957
14 lines
383 B
TypeScript
14 lines
383 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
|
|
*/
|
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
|
|
|
import {TestsAppModule} from './test_module';
|
|
|
|
platformBrowserDynamic().bootstrapModule(TestsAppModule);
|