From aa512e93ef39799fc1fc9ac5ac0f310bd424e012 Mon Sep 17 00:00:00 2001 From: Refringe Date: Mon, 30 Oct 2023 17:31:58 -0400 Subject: [PATCH] Resolves an issue that caused the profiler from not being able to parse import paths. --- project/tsconfig.profiler.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/project/tsconfig.profiler.json b/project/tsconfig.profiler.json index c7d718a9..62458190 100644 --- a/project/tsconfig.profiler.json +++ b/project/tsconfig.profiler.json @@ -4,7 +4,13 @@ "outDir": "obj", "declaration": true, "sourceMap": true, - "noImplicitAny": false + "noImplicitAny": false, + "baseUrl": ".", + "paths": { + "@spt-aki/*": [ + "src/*" + ] + } }, "include": [ "./types/**/*",