From d0ec78ad8b263f9b0e0cc96bc2893986ede6833f Mon Sep 17 00:00:00 2001 From: George Omara Date: Tue, 14 Oct 2025 18:03:16 +0300 Subject: [PATCH] chore(tsconfig): replace deprecated baseUrl with paths mapping --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b0bbd948b..ae0c5ac3d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,9 @@ "target": "ES2023", "sourceMap": true, "outDir": "./dist", - "baseUrl": "./", + "paths": { + "@/*": ["./src/*"] + }, "incremental": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true