Files
gh-christianlouis-docuelevate/mobile/tsconfig.json
T
2026-03-16 17:47:16 +00:00

29 lines
454 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": [
"ESNext"
],
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-native",
"paths": {
"@/*": [
"./src/*"
]
},
"baseUrl": "."
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
],
"extends": "expo/tsconfig.base"
}