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