From 93a659b98397d1ae656dcda3705277df8e10302f Mon Sep 17 00:00:00 2001 From: Rokojori Date: Sun, 19 Apr 2026 15:52:51 +0200 Subject: [PATCH] TSConfig Updates --- browser/tsconfig.json | 2 ++ node/tsconfig.json | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/browser/tsconfig.json b/browser/tsconfig.json index 8155182..9368298 100644 --- a/browser/tsconfig.json +++ b/browser/tsconfig.json @@ -13,6 +13,8 @@ }, "typeRoots": [ "node_modules/@types","node_modules/@types/three/"], + "noImplicitAny": false, + "strictNullChecks": false } diff --git a/node/tsconfig.json b/node/tsconfig.json index a2722cd..0ce3303 100644 --- a/node/tsconfig.json +++ b/node/tsconfig.json @@ -4,6 +4,8 @@ "module": "es2022", "target": "es2015", "moduleResolution": "Node", - "types": ["node"] + "types": ["node"], + "noImplicitAny": false, + "strictNullChecks": false } } \ No newline at end of file