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
		
			
				
	
	
		
			8 lines
		
	
	
		
			179 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			179 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Component } from '@angular/core';
 | 
						|
 | 
						|
@Component({
 | 
						|
  selector: 'my-widget',
 | 
						|
  templateUrl: './widget.component.html',
 | 
						|
})
 | 
						|
export class WidgetComponent  { name = 'Angular'; }
 |