From aa59bf62bf190b38298ac618b5a40ebe9863e05d Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 10 Dec 2018 20:25:49 +0100 Subject: [PATCH] build: ts-api-guardian tsconfig warning with bazel * Suppresses the warning from the Bazel TypeScript rules about overwritten options from the `tools/tsconfig.json` file. This is the only remaining warning that makes our Bazel build on Angular Material "dirty" --- tools/tsconfig.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/tsconfig.json b/tools/tsconfig.json index 76d18b8ec60da..086b31659960e 100644 --- a/tools/tsconfig.json +++ b/tools/tsconfig.json @@ -30,5 +30,8 @@ "typings-test", "public_api_guard", "docs" - ] -} \ No newline at end of file + ], + "bazelOptions": { + "suppressTsconfigOverrideWarnings": true + } +}