4d5a4d89cd
* feat: add an env for testing closure builds * build(npm): add dev dependency on yarn (and remove dev props for readability) * build: refactor integration test runner
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import {HelloWorldComponent} from './hello-world.component';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
@NgModule({
|
|
declarations: [HelloWorldComponent],
|
|
bootstrap: [HelloWorldComponent],
|
|
imports: [BrowserModule],
|
|
})
|
|
export class AppModule {}
|