build: remove unused no-strict tsconfig file (#42506)

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
This commit is contained in:
Paul Gschwendtner 2021-06-07 16:17:03 +02:00 committed by Jessica Janiuk
parent 64c8027538
commit 38c592ea0a
2 changed files with 2 additions and 18 deletions

View File

@ -1,3 +1,5 @@
load("//tools:defaults.bzl", "ts_config", "ts_library")
package(default_visibility = ["//visibility:public"])
exports_files([
@ -5,8 +7,6 @@ exports_files([
"tsconfig.json",
])
load("//tools:defaults.bzl", "ts_config", "ts_library")
ts_library(
name = "types",
srcs = glob(["*.ts"]),
@ -22,12 +22,6 @@ ts_config(
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",

View File

@ -1,10 +0,0 @@
{
"extends": "./tsconfig-build.json",
"compilerOptions": {
"strict": false
},
"bazelOptions": {
"suppressTsconfigOverrideWarnings": true,
"devmodeTargetOverride": "es5"
}
}