From d2b98021cfbe2147de720c87d5ef4bb87274278a Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Fri, 2 Jul 2021 13:41:13 -0300 Subject: [PATCH] 17782: Loosens type-checking restrictions to match those of react-scripts-ts. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 49b6b1b1..66a7d98b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,7 +28,11 @@ "strict": true, "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true + "incremental": true, + "noEmit": true, + "alwaysStrict": false, + "strictFunctionTypes": false, + "strictPropertyInitialization": false, }, "exclude": [ "node_modules", -- 2.30.2