From e6c5783d62f72fec72a10e004f416daca02a4b7a Mon Sep 17 00:00:00 2001 From: Syahdan Date: Thu, 15 May 2025 10:42:40 +0700 Subject: [PATCH] add import alias --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b9567f6..6b574f4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,10 @@ { "extends": "expo/tsconfig.base", "compilerOptions": { - "strict": true + "strict": true, + "baseUrl": ".", + "paths": { + "@/*": ["src/*"] + } } }