Messenger/packages/mobile/tsconfig.json
Заид Омар Медхат | Zaid Omar Medhat f653b083aa f
2026-07-13 12:32:00 +05:00

33 lines
833 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"useUnknownInCatchVariables": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"app/**/*",
"src/**/*",
"app.config.ts",
".expo/types/**/*.ts",
"expo-env.d.ts"
]
}