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.
15 lines (13 loc) • 416 B
text/typescript
import { NgModule, Component } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
//import { Your_Module_Name_Here } from "../src"
@Component({ selector: 'app', template: 'nothing here'})
export class AppComponent {}
@NgModule({
imports: [
BrowserModule
//,Your_Module_Name_Here
],
declarations: [ AppComponent ],
bootstrap: [AppComponent]
}) export class AppModule {}