From 74a3c46257d7a94380eb56f991a60bb4f657aa5d Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Fri, 1 Nov 2024 11:27:49 +0100 Subject: [PATCH] fix: tsconfig to support modules --- api/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tsconfig.json b/api/tsconfig.json index c03a67ea..08af0f09 100644 --- a/api/tsconfig.json +++ b/api/tsconfig.json @@ -21,7 +21,7 @@ "resolveJsonModule": true, "esModuleInterop": true, "paths": { - "@/*": ["src/*", "src/.hexabot/*"], + "@/*": ["src/*", "src/.hexabot/*", "src/extra/*"], "hexabot/src/*": ["src/*", "src/.hexabot/*"] } },