Various targets have their template type-checking disabled in the past. There is no reason for this any more. The only target that was tricky was packages/examples/core:core_examples which was quite broken and I had to fix it up. Template typechecking is still disabled under blaze, see FW-1753 for more info. PR Close #34144
		
			
				
	
	
		
			34 lines
		
	
	
		
			830 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			830 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| load("//tools:defaults.bzl", "ng_module", "ts_devserver")
 | |
| 
 | |
| ng_module(
 | |
|     name = "router_activated_route_examples",
 | |
|     srcs = glob(
 | |
|         ["**/*.ts"],
 | |
|     ),
 | |
|     generate_ve_shims = True,
 | |
|     deps = [
 | |
|         "//packages/core",
 | |
|         "//packages/platform-browser",
 | |
|         "//packages/platform-browser-dynamic",
 | |
|         "//packages/router",
 | |
|         "@npm//rxjs",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| ts_devserver(
 | |
|     name = "devserver",
 | |
|     entry_module = "@angular/examples/router/activated-route/main",
 | |
|     port = 4200,
 | |
|     scripts = [
 | |
|         "@npm//:node_modules/tslib/tslib.js",
 | |
|         "//tools/rxjs:rxjs_umd_modules",
 | |
|     ],
 | |
|     static_files = [
 | |
|         "//packages/examples:index.html",
 | |
|         "//packages/zone.js/dist:zone.js",
 | |
|     ],
 | |
|     deps = [":router_activated_route_examples"],
 | |
| )
 |