I'm attempting to follow the Angular 2 quickstart guide, but I'm having trouble getting it to work. I've searched for similar questions but haven't found a solution yet. Can anyone assist me with this?
Here is my code:
app.component.ts
import {Component} from 'angular2/core';
@Component({
selector: 'my-app',
template: '<h1>My First Angular 2 App</h1>'
})
export class AppComponent { }
... (rest of the original content omitted for brevity)
In my browser, when I try to run the application, it seems like the main.ts file is not being transpiled into main.js as expected.
Thank you in advance for any help provided!