This commit is contained in:
2026-04-18 23:11:35 +02:00
commit f7cfd2a86e
196 changed files with 35538 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM"],
"types": ["expo/types"],
"composite": false,
"noEmit": true,
"allowJs": true,
"paths": {
"@/*": ["./*"],
"@shared/*": ["../../packages/shared/src/*"],
"@db-types/*": ["../../packages/db-types/src/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
],
"exclude": ["node_modules", ".expo", "dist", "build"]
}