Preserve compatibility with rollup_bundle rule. Add missing npm dependencies, which are now enforced by the strict_deps plugin in tsc_wrapped PR Close #30370
		
			
				
	
	
		
			18 lines
		
	
	
		
			414 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			414 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "ts_library")
 | |
| 
 | |
| package(default_visibility = ["//packages/compiler-cli/ngcc:__subpackages__"])
 | |
| 
 | |
| ts_library(
 | |
|     name = "helpers",
 | |
|     testonly = True,
 | |
|     srcs = glob([
 | |
|         "*.ts",
 | |
|     ]),
 | |
|     deps = [
 | |
|         "//packages/compiler-cli/ngcc",
 | |
|         "//packages/compiler-cli/src/ngtsc/path",
 | |
|         "//packages/compiler-cli/src/ngtsc/testing",
 | |
|         "@npm//typescript",
 | |
|     ],
 | |
| )
 |