This helps ensure we use the same tsconfig.json file for all compilations. Next steps are to make it the same tsconfig.json file used by the editor PR Close #20964
		
			
				
	
	
		
			20 lines
		
	
	
		
			387 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			387 B
		
	
	
	
		
			Python
		
	
	
	
	
	
package(default_visibility = ["//visibility:public"])
 | 
						|
 | 
						|
load("//tools:defaults.bzl", "ts_library")
 | 
						|
 | 
						|
ts_library(
 | 
						|
    name = "platform-browser",
 | 
						|
    srcs = glob(
 | 
						|
        [
 | 
						|
            "*.ts",
 | 
						|
            "src/**/*.ts",
 | 
						|
        ],
 | 
						|
    ),
 | 
						|
    module_name = "@angular/platform-browser",
 | 
						|
    deps = [
 | 
						|
        "//packages:types",
 | 
						|
        "//packages/common",
 | 
						|
        "//packages/core",
 | 
						|
    ],
 | 
						|
)
 |