38c592ea0a
In the past, when we enabled `--strict` in the repository, we added another tsconfig for code not being migrated to be `--strict` compatible. This was done for the deprecated http and webworker packages. Since these are now removed, we can rmeove the logic. PR Close #42506
29 lines
512 B
Python
29 lines
512 B
Python
load("//tools:defaults.bzl", "ts_config", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"tsconfig-build.json",
|
|
"tsconfig.json",
|
|
])
|
|
|
|
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"],
|
|
)
|
|
|
|
exports_files([
|
|
"license-banner.txt",
|
|
"README.md",
|
|
])
|