From 9e52c7e5980e16116b0d545e92280c1979dcefc0 Mon Sep 17 00:00:00 2001 From: strobie <0xstrobe@protonmail.com> Date: Mon, 3 Oct 2022 14:34:40 +0200 Subject: [PATCH] fix tsconfig --- tsconfig.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fe12ecabc3..97ad9508cb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,10 +14,8 @@ } }, "compilerOptions": { - // typescript options here - "typeRoots": [ - "./typings/", - "./node_modules/@types/" - ] + "noImplicitAny": false, + "strictNullChecks": false, + "typeRoots": ["./typings/", "./node_modules/@types/"] } -} \ No newline at end of file +}