mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
13 lines
383 B
TypeScript
13 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);
|