Files
fressh/apps/mobile/tsconfig.json
EthanShoeDev bbc1b8a9a0 one error down
2025-09-13 02:52:24 -04:00

33 lines
736 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
// https://github.com/jhugman/uniffi-bindgen-react-native/pull/198
// https://github.com/microsoft/TypeScript/issues/41883#issuecomment-1758692340
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitOverride": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
// "noImplicitOverride": true,
"allowJs": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts",
"eslint.config.js"
]
}