dashboard
repositories
activity
search
login
APPS
/
PAILot
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
fix: project picker scroll, reconnect scroll, keyboard dismiss
Matthias Nott
2026-03-07
281834df3070cfbdfc28314ab2a2e84d321ca5df
[APPS/PAILot.git]
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"@components": ["./components"],
"@components/*": ["./components/*"],
"@contexts": ["./contexts"],
"@contexts/*": ["./contexts/*"],
"@services": ["./services"],
"@services/*": ["./services/*"],
"@core": ["./core"],
"@core/*": ["./core/*"],
"@types": ["./types"],
"@types/*": ["./types/*"]
}
}
}