ack-webpack
Version:
A code bundler that drastically reduces setup time by offering an init prompt of project setup questions and includes a fantastic browser reloader.
21 lines (19 loc) • 602 B
text/typescript
import { NgModule, Component } from "@angular/core"
import { BrowserModule } from "@angular/platform-browser"
//import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
//import { AppComponent } from "./components/app.component"
//export { AppComponent } from "./components/app.component"
@Component({
selector:"app",
template:"Hello World of TypeScript'd Angular"
}) export class AppComponent{}
@NgModule({
imports:[
BrowserModule//,
//BrowserAnimationsModule
],
declarations: [
AppComponent
],
bootstrap:[ AppComponent ]
}) export class AppModule {}