From 54e0a092b619c819cf2a1f71b809472daa142c62 Mon Sep 17 00:00:00 2001 From: g-ouattara Date: Tue, 23 Apr 2024 21:05:09 +0000 Subject: [PATCH] shortcut for some folder --- tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c4a1038..8655561 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,15 @@ { "extends": "expo/tsconfig.base", "compilerOptions": { - "strict": true + "strict": true, + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"], + "@screens/*": ["./src/screens/*"], + "@components/*": ["./src/components/*"], + "@themes/*": ["./src/themes/*"], + "@styles/*": ["./src/styles/*"], + "@hooks/*": ["./src/hooks/*"] + } } } -- libgit2 0.27.1