From fbb274a3b1d607fee54b0beefcf3e5f140627fe3 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 25 Jan 2026 09:51:00 -0800 Subject: [PATCH] =?UTF-8?q?chore(fontend-users):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20TypeScript=20compiler=20options=20(strict=20checks,=20path?= =?UTF-8?q?=20mappings)=20in=20frontend-users=20email=20feature?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/email/frontend-users/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/features/email/frontend-users/tsconfig.json b/features/email/frontend-users/tsconfig.json index 5947df0e0..ea56409fa 100755 --- a/features/email/frontend-users/tsconfig.json +++ b/features/email/frontend-users/tsconfig.json @@ -17,7 +17,11 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, - "noUncheckedIndexedAccess": true + "noUncheckedIndexedAccess": true, + "baseUrl": ".", + "paths": { + "@/*": ["src/*"] + } }, "include": ["src"] }