24 lines
		
	
	
		
			401 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			401 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| exports_files([
 | |
|     "tsconfig-build.json",
 | |
|     "tsconfig-test.json",
 | |
|     "tsconfig.json",
 | |
| ])
 | |
| 
 | |
| load("//tools:defaults.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "types",
 | |
|     srcs = glob(["*.ts"]),
 | |
|     deps = [
 | |
|         "@ngdeps//@types/hammerjs",
 | |
|         "@ngdeps//zone.js",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| exports_files([
 | |
|     "license-banner.txt",
 | |
|     "README.md",
 | |
| ])
 |