Skip to content

Commit

Permalink
build: remove unused no-strict tsconfig file (angular#42506)
Browse files Browse the repository at this point in the history
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 angular#42506
  • Loading branch information
devversion authored and thePunderWoman committed Jun 7, 2021
1 parent 64c8027 commit 38c592e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
10 changes: 2 additions & 8 deletions packages/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
load("//tools:defaults.bzl", "ts_config", "ts_library")

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"]),
Expand All @@ -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",
Expand Down
10 changes: 0 additions & 10 deletions packages/tsconfig-build-no-strict.json

This file was deleted.

0 comments on commit 38c592e

Please sign in to comment.