From 088842ac382710b12ba06e88648b318de444a28d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Sat, 30 Dec 2023 16:58:44 -0500 Subject: [PATCH] refactor(config): change tsconfig set `verbatimModuleSyntax` to false --- server/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index 65dce3f..0983841 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "allowJs": true, "outDir": "../out", - "noImplicitAny": false + "noImplicitAny": false, + "verbatimModuleSyntax": false } }