Files
techtracker/apps/expo/tsconfig.json
2025-09-15 16:54:46 -05:00

21 lines
386 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"jsx": "react-jsx",
"esModuleInterop": true,
"paths": {
"assets/*": ["./assets/*"],
"@/*": ["./src/*"],
"~/*": ["../../packages/backend/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
]
}