Files
fiberops-mobile/tsconfig.json

16 lines
344 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"@/components/*": ["./components/*"],
"@/stores/*": ["./stores/*"],
"@/services/*": ["./services/*"],
"@/hooks/*": ["./hooks/*"],
"@/constants/*": ["./constants/*"]
}
}
}