chore: initialize Expo SDK 55 project with TypeScript

React Native + Expo Router setup with strict TypeScript,
path aliases, and dark-first configuration.
This commit is contained in:
Mathis Pruvot
2026-05-28 11:48:49 +00:00
commit 961d29ebe8
16 changed files with 7950 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}