Files
basango/projects/mobile/tsconfig.json
T
2025-10-05 14:42:25 +02:00

22 lines
326 B
JSON

{
"extends": "expo/tsconfig.base",
"exclude": ["__tests__/**/*-test.ts"],
"compilerOptions": {
"strict": true,
"paths": {
"@/*": [
"./src/*"
],
"~/*": [
"./*"
],
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
]
}