From 089458c64abea693f1495e9ab8bc702b89116a2c Mon Sep 17 00:00:00 2001 From: makoto abe Date: Thu, 13 Jul 2017 19:29:28 +0900 Subject: [PATCH] `tslint.json` should be present, and `tsconfig.json` should have `noImplicitAny`, `noImplicitThis`, and `strictNullChecks` set to `true`. --- types/material-ui-pagination/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/material-ui-pagination/tsconfig.json b/types/material-ui-pagination/tsconfig.json index 55a79c9ac6..23f79c4aa6 100644 --- a/types/material-ui-pagination/tsconfig.json +++ b/types/material-ui-pagination/tsconfig.json @@ -9,9 +9,9 @@ "es6", "dom" ], - "noImplicitAny": false, + "noImplicitAny": true, "noImplicitThis": true, - "strictNullChecks": false, + "strictNullChecks": true, "baseUrl": "../", "jsx": "react", "experimentalDecorators": true,