From 69198ba37bc156ca16034357b5be0dfb3c22e719 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 17 Dec 2018 22:29:32 -0800 Subject: [PATCH] build(docs-infra): turn on disableTypeScriptVersionCheck in angularCompilerOptions (#27536) We need to do this because we don't yet have a released version of angular with typescript 3.2 support and on CI we test both against the snapshot and whatever is in aio/yarn.lock. Once we have the next rc or a stable relase we should be able to remove this flag. PS: I also removed the preserveWhitespace:false because that's the default now. PR Close #27536 --- aio/src/tsconfig.app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/src/tsconfig.app.json b/aio/src/tsconfig.app.json index f92893cafd..64a2623a35 100644 --- a/aio/src/tsconfig.app.json +++ b/aio/src/tsconfig.app.json @@ -14,6 +14,6 @@ "**/*.spec.ts" ], "angularCompilerOptions": { - "preserveWhitespaces": false + "disableTypeScriptVersionCheck": true } -} +} \ No newline at end of file