From 369051affcfd8a8d379be5225833fe127b82889b Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Sun, 30 Jul 2023 17:47:10 -0700 Subject: [PATCH] fix: specify that we use no type in tsconfig so that we don't get type errors from from three.js in the parent lume repo (no idea why it happens) --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0524f4b..dd3ccde 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,8 @@ "noImplicitAny": true, "outDir": "es", "declaration": true, - "declarationMap": true + "declarationMap": true, + "types": [] }, "include": ["src/*.ts"] }