From a8261fcd9a24774822d5729c5f727c36b36683f2 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Thu, 23 Mar 2017 13:33:07 +0000 Subject: [PATCH] fix(@angular/cli): allow ts 2.2 The CLI itself was locked to TS2.0/2.1, but that could case it to not use the project TS when users updated to 2.2. --- packages/@angular/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@angular/cli/package.json b/packages/@angular/cli/package.json index c81f95c731ae..79414a279ad7 100644 --- a/packages/@angular/cli/package.json +++ b/packages/@angular/cli/package.json @@ -77,7 +77,7 @@ "stylus": "^0.54.5", "stylus-loader": "^2.4.0", "temp": "0.8.3", - "typescript": ">=2.0.0 <2.2.0", + "typescript": ">=2.0.0 <2.3.0", "url-loader": "^0.5.7", "walk-sync": "^0.3.1", "webpack": "~2.2.0",