From 12f7f859b61046ea038ef3f3759f4c8fb95b9cfd Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 14 Jan 2023 20:32:13 +0100 Subject: [PATCH] Added paths to the tsconfig.json --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8f93cb6..7a04d7e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,11 +2,15 @@ "compilerOptions": { "target": "es2016", "module": "commonjs", + "baseUrl": "src", "rootDir": "src", "outDir": "dist", + "paths": { + "@utils/*": ["utils/*"], + }, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true } -} +} \ No newline at end of file