15 lines
		
	
	
		
			360 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			360 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| package(default_visibility=["//visibility:public"])
 | |
| load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "common",
 | |
|     srcs = glob(["**/*.ts"], exclude=[
 | |
|       "http/**",
 | |
|       "test/**",
 | |
|       "testing/**",
 | |
|     ]),
 | |
|     module_name = "@angular/common",
 | |
|     deps = ["//packages/core"],
 | |
|     tsconfig = ":tsconfig-build.json",
 | |
| )
 |