I'm totally new to Angular 2 (MEAN stack). I started just 1 hour ago.
I'm following the official tutorial for newbies (https://angular.io/docs/ts/latest/tutorial/toh-pt1.html)
I have this app.component.ts:
import { Component } from '@angular/core';
export class Hero {
id: number;
name: string;
}
hero: Hero = {
id: 1,
name: 'Windstorm'
};
@Component({
selector: 'my-app',
template: '<h1>{{title}}</h1> <h2>{{hero.name}} details!</h2>'
})
export class AppComponent {
title = 'Tour of Heroes';
}
Just as the tutorial says it must be done. Now, the console throw me a lot of errors.
I don't have any idea about what could be the issue.
Edit 1:
Trying to downgrade Zone.JS like this npm i --save [email protected] (previously 0.7.5) just broke something. Now npm start throw this error:
Edit 2:
I modified the start object in package.json to this:
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
Seems to work properly (now the localhost is working).
The console keeps showing the errors like the above image.

