9bfb508b87
The @types/trusted-types type definitions are currently imported in types.d.ts, which causes them to eventually be imported in core.d.ts. This forces anyone compiling against @angular/core to provide the @types/trusted-types package in their compilation unit, which we don't want. To address this, get rid of the @types/trusted-types and instead import a minimal version of the Trusted Types type definitions directly into Angular's codebase. Update the existing references to Trusted Types to point to the new definitions. PR Close #39211
35 lines
645 B
Python
35 lines
645 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"tsconfig-build.json",
|
|
"tsconfig.json",
|
|
])
|
|
|
|
load("//tools:defaults.bzl", "ts_config", "ts_library")
|
|
|
|
ts_library(
|
|
name = "types",
|
|
srcs = glob(["*.ts"]),
|
|
deps = [
|
|
"//packages/zone.js/lib:zone_d_ts",
|
|
"@npm//@types/hammerjs",
|
|
],
|
|
)
|
|
|
|
ts_config(
|
|
name = "tsconfig-test",
|
|
src = "tsconfig-test.json",
|
|
deps = [":tsconfig-build.json"],
|
|
)
|
|
|
|
ts_config(
|
|
name = "tsconfig-build-no-strict",
|
|
src = "tsconfig-build-no-strict.json",
|
|
deps = [":tsconfig-build.json"],
|
|
)
|
|
|
|
exports_files([
|
|
"license-banner.txt",
|
|
"README.md",
|
|
])
|