sgcart/tsconfig.json
2026-07-03 13:10:46 +05:30

28 lines
433 B
JSON

{
"extends": "@react-native/typescript-config",
"compilerOptions": {
"jsx": "react-native",
"types": [
"jest"
],
"paths": {
"@config": [
"./app/config"
],
"@components": [
"./app/components"
],
"@features": [
"./app/features"
],
}
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"**/node_modules",
"**/Pods"
]
}