This is in preparation for more rigorous testing of external templates, since it'll work differently under the new tsserver plugin model. PR Close #30128
		
			
				
	
	
		
			13 lines
		
	
	
		
			372 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			372 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { NgModule }      from '@angular/core';
 | 
						|
import { BrowserModule } from '@angular/platform-browser';
 | 
						|
 | 
						|
import { AppComponent }  from './app.component';
 | 
						|
import { WidgetComponent } from './widget.component';
 | 
						|
 | 
						|
@NgModule({
 | 
						|
  imports:      [ BrowserModule ],
 | 
						|
  declarations: [ AppComponent, WidgetComponent ],
 | 
						|
  bootstrap:    [ AppComponent ]
 | 
						|
})
 | 
						|
export class AppModule { }
 |