Files
2026-05-19 18:46:16 +02:00

28 lines
625 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"module": "esnext",
"strict": true,
"baseUrl": ".",
"paths": {
"@/components/*": ["./components/*"],
"@/app/*": ["./app/*"],
"@/types/*": ["./types/*"],
"@/utils/*": ["./utils/*"],
"@/store/*": ["./store/*"],
"@/hooks/*": ["./hooks/*"],
"@/constants/*": ["./constants/*"],
"@/models/*": ["./models/*"],
"@/api/*": ["./api/*"],
"@/auth/*": ["./auth/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts",
"nativewind-env.d.ts"
]
}