From 79b868b0a891869d381a6c3680bdbdc5fef18001 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Mon, 29 Feb 2016 15:34:32 -0600 Subject: [PATCH] chore(): use typescript 1.7 for now 1.8 breaks a few things, use 1.7 until we figure them out --- gulpfile.js | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 33c5006a30..903a3722e2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,7 +31,8 @@ function getTscOptions(name) { experimentalDecorators: true, target: "es5", module: "commonjs", - isolatedModules: true + isolatedModules: true, + typescript: require('typescript') } if (name === "typecheck") { diff --git a/package.json b/package.json index afc4f9f4bc..d45fc9cb35 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ "strip-sourcemap-loader": "0.0.1", "systemjs": "0.19.6", "through2": "^0.6.3", - "typescript": "^1.7.3", + "typescript": "1.7.5", "vinyl": "^0.4.6", "webpack": "^1.12.2", "yargs": "^3.6.0"