From 029c9bec6b26951935f04868a892e9a74f5913b7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 24 Mar 2022 10:53:44 -0500 Subject: [PATCH] Prime tsconfig to turn on strict mode one rule at a time --- tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 6af5fd8135..2b8a0a0302 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,14 @@ "compilerOptions": { "baseUrl": "app/", "sourceMap": true, - "strict": true, + "alwaysStrict": false, + "strictNullChecks": false, + "strictBindCallApply": false, + "strictFunctionTypes": false, + "strictPropertyInitialization": false, + "noImplicitAny": true, + "noImplicitThis": false, + "useUnknownInCatchVariables": false, "module": "es6", "target": "es5", "jsx": "react",