From f3d906564b55a2d6ab673a3c326d9171d81264fc Mon Sep 17 00:00:00 2001 From: Tetsuharu OHZEKI Date: Wed, 2 Dec 2015 11:32:58 +0900 Subject: [PATCH 1/2] Update TypeScript compiler to 1.8.0-dev.20151201 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0de67ae2..a3a18e9f 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "mocha": "^2.3.4", "tsd": "^0.6.5", "tslint": "3.1.0-dev.1", - "typescript": "1.8.0-dev.20151128", + "typescript": "1.8.0-dev.20151201", "vinyl-source-stream": "^1.1.0" } } From 91a85d62ac7c98f21311bdb3fd5bbd7a23c8169b Mon Sep 17 00:00:00 2001 From: Tetsuharu OHZEKI Date: Wed, 2 Dec 2015 11:37:56 +0900 Subject: [PATCH 2/2] Fix #503: Re-enable tsc's noImplicitReturns option --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 1e7c223f..b09d183c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "module": "es2015", "moduleResolution": "node", "noImplicitAny": true, - "noImplicitReturns": false, // FIXME: #503 we'd like to enable this option again. + "noImplicitReturns": true, "outDir": "./dist/client/__obj/", "pretty": true, "preserveConstEnums": true,