28 lines
625 B
JSON
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"
|
|
]
|
|
}
|