From 3b02ffbcdcba67df91360a3683ec13d722b955c6 Mon Sep 17 00:00:00 2001 From: Mike Hartington Date: Tue, 31 May 2016 18:56:19 -0400 Subject: [PATCH] chore(tsconfig): set noImplicitAny --- tsconfig.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index f4ab03bd64..7b2ff9383a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,14 +5,22 @@ "target": "es5", "module": "commonjs", "declaration": true, - "outDir": "dist" + "outDir": "dist", + "noImplicitAny": true }, + "filesGlob": [ + "src/**/*.ts", + "!node_modules/**/*" + ], "exclude": [ "node_modules", "scripts", "typings/main", "typings/main.d.ts" ], - "compileOnSave" : false, - "buildOnSave": false + "compileOnSave": false, + "buildOnSave": false, + "atom": { + "rewriteTsconfig": false + } }