From 300504c09caa03a79173240b48711b5992aecaa0 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Mon, 12 Dec 2016 17:05:13 -0800 Subject: [PATCH] fix(TypeScript): pin to TypeScript 2.0.x, fix errors with Error subclassing Because the the last build was pinned to 2.x.x, it built with TypeScript 2.1.x, which had breaking changes but was not a major release. This should fix that. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7b18a0765e..85749b6f21 100644 --- a/package.json +++ b/package.json @@ -186,7 +186,7 @@ "source-map-support": "^0.4.0", "tslib": "^1.0.0", "tslint": "^3.15.1", - "typescript": "^2.0.6", + "typescript": "~2.0.6", "typings": "^2.0.0", "validate-commit-msg": "^2.3.1", "watch": "^1.0.1",