From 20573fa26d4fb23e96dda56313266a7be7063a9d Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Wed, 27 Mar 2019 06:35:16 -0700 Subject: [PATCH] egg-mock: set noImplicitAny: false (#34240) egg-mock 3.* has a dependency on egg-logger 1.7.1, which has an implicit any error in its d.ts. Until somebody updates egg-mock types, I think it's fine to change this package to not give implicit-any errors. --- types/egg-mock/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/egg-mock/tsconfig.json b/types/egg-mock/tsconfig.json index 86b33fc149..50edb7c401 100644 --- a/types/egg-mock/tsconfig.json +++ b/types/egg-mock/tsconfig.json @@ -4,7 +4,7 @@ "lib": [ "es6" ], - "noImplicitAny": true, + "noImplicitAny": false, "noImplicitThis": true, "strictNullChecks": false, "strictFunctionTypes": true, @@ -20,4 +20,4 @@ "index.d.ts", "egg-mock-tests.ts" ] -} \ No newline at end of file +}