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