33 lines
833 B
JSON
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"
|
|
]
|
|
}
|