From 38c592ea0a3c84fcd164fd24b19a57be3aa8fa54 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 7 Jun 2021 16:17:03 +0200 Subject: [PATCH] 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 --- packages/BUILD.bazel | 10 ++-------- packages/tsconfig-build-no-strict.json | 10 ---------- 2 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 packages/tsconfig-build-no-strict.json diff --git a/packages/BUILD.bazel b/packages/BUILD.bazel index da0cac4228..f8e2de5fc2 100644 --- a/packages/BUILD.bazel +++ b/packages/BUILD.bazel @@ -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", diff --git a/packages/tsconfig-build-no-strict.json b/packages/tsconfig-build-no-strict.json deleted file mode 100644 index c8f428a8f7..0000000000 --- a/packages/tsconfig-build-no-strict.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "./tsconfig-build.json", - "compilerOptions": { - "strict": false - }, - "bazelOptions": { - "suppressTsconfigOverrideWarnings": true, - "devmodeTargetOverride": "es5" - } -}