From e818f404a39026defcfeeef24c9b03a68faf9823 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Thu, 25 Oct 2018 18:44:00 +0200 Subject: [PATCH] build: supress warnings when building tests with bazel * Suppress Bazel warnings when compiling the unit tests. This is necessary for the test tsconfig because TypeScript does not inherit third-party `tsconfig` options. --- src/bazel-tsconfig-test.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bazel-tsconfig-test.json b/src/bazel-tsconfig-test.json index ca588c3e2ce7..ec3042cf1f02 100644 --- a/src/bazel-tsconfig-test.json +++ b/src/bazel-tsconfig-test.json @@ -6,5 +6,8 @@ "compilerOptions": { "importHelpers": false, "types": ["jasmine"] + }, + "bazelOptions": { + "suppressTsconfigOverrideWarnings": true } }