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/*"] + } } }