From 5fc68eb3bc7414792d449a8f038c1b25e28cb087 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: Thu, 28 Dec 2023 04:27:45 -0500 Subject: [PATCH] refactor(config): change `verbatimModuleSyntax` to false in tsconfig --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c616c90..c012c11 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,9 @@ "allowJs": true, "noImplicitAny": false, "noImplicitThis": false, - "verbatimModuleSyntax": false + "verbatimModuleSyntax": false, + "paths": { + "@dbconfig": ["./lib/dbconfig.ts"] + } } }