From 8684fb58044e3fb6dbc0891f07bd9824d11391ab Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 17 Dec 2018 22:21:11 -0800 Subject: [PATCH] build(docs-infra): disable cli.warnings.typescriptMismatch warnings (#27536) cli is not yet officially compatible with typescript 3.2, so we need to disable the version check via: ng config cli.warnings.typescriptMismatch false PR Close #27536 --- aio/angular.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aio/angular.json b/aio/angular.json index 55ea6471e0..27222da290 100644 --- a/aio/angular.json +++ b/aio/angular.json @@ -2,7 +2,10 @@ "$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json", "version": 1, "cli": { - "packageManager": "yarn" + "packageManager": "yarn", + "warnings": { + "typescriptMismatch": false + } }, "newProjectRoot": "projects", "projects": {