Bom dia.
A minha execução apresenta o mesmo erro que Henrique Weiand, porém eu não consigo identificar onde está o erro Maximum call stack size exceeded
.
main.ts
:
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app.module';
const platform = platformBrowserDynamic();
platform.bootstrapModule(AppModule);
app.module.ts
:
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {AppComponent} from './app.component';
@NgModule({imports: [BrowserModule], declarations: [AppComponent], bootstrap: [AppComponent]})
export class AppModule {}
app.component.ts
:
import { Component } from '@angular/core';
@Component({selector: 'app', templateUrl: 'app.component.html'})
export class AppComponent {
}
html
relevante:
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
<body>
<app>Carregando...</app>
</body>