From e163cbf77c3245f8739221cac66f9908857caca5 Mon Sep 17 00:00:00 2001 From: danrevah Date: Mon, 6 Feb 2017 11:28:23 +0200 Subject: [PATCH] Fix(#23): Disable implict any --- src/tsconfig.json | 1 + tsconfig.json | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index 1cf713a3..60bbce24 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -4,6 +4,7 @@ "declaration": false, "emitDecoratorMetadata": true, "experimentalDecorators": true, + "noImplicitAny": false, "lib": ["es6", "dom"], "mapRoot": "./", "module": "es6", diff --git a/tsconfig.json b/tsconfig.json index add277eb..d9c8dc2c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "declaration": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, + "noImplicitAny": false, "lib": ["es6", "dom"], "module": "commonjs", "moduleResolution": "node", @@ -17,5 +18,8 @@ "exclude": [ "node_modules", "**/*.spec.ts" - ] + ], + "angularCompilerOptions": { + "genDir": "compiled" + } }