Files
fressh/apps/mobile/tsconfig.json
EthanShoeDev 6b9c8921a3 Release stuff
2025-10-06 18:19:26 -04:00

31 lines
752 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
// TODO: Get this merged
// https://github.com/jhugman/uniffi-bindgen-react-native/pull/297
"noUnusedLocals": true,
"noUnusedParameters": true,
"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",
".release-it.ts"
]
}