17 lines
		
	
	
		
			420 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			420 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								package(default_visibility=["//visibility:public"])
							 | 
						||
| 
								 | 
							
								load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ts_library(
							 | 
						||
| 
								 | 
							
								    name = "compiler-cli",
							 | 
						||
| 
								 | 
							
								    srcs = glob(["**/*.ts"], exclude=[
							 | 
						||
| 
								 | 
							
								        "integrationtest/**",
							 | 
						||
| 
								 | 
							
								        "test/**",
							 | 
						||
| 
								 | 
							
								    ]),
							 | 
						||
| 
								 | 
							
								    module_name = "@angular/compiler-cli",
							 | 
						||
| 
								 | 
							
								    deps = [
							 | 
						||
| 
								 | 
							
								        "//packages/compiler",
							 | 
						||
| 
								 | 
							
								        "//packages/tsc-wrapped",
							 | 
						||
| 
								 | 
							
								    ],
							 | 
						||
| 
								 | 
							
								    tsconfig = ":tsconfig-build.json",
							 | 
						||
| 
								 | 
							
								)
							 |