@dr.pogodin/react-native-fs
Version:
Native filesystem access for React Native
22 lines (21 loc) • 683 B
JSON
{
"extends": "@react-native/typescript-config",
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules", "**/Pods"],
"compilerOptions": {
// TODO: For now it is disabled, as it leads to a bunch of errors
// in the internal RN modules... perhaps because we import stuff we
// should not import.
// "customConditions": ["react-native-strict-api"],
"rootDir": ".",
"paths": {
"@dr.pogodin/react-native-fs": ["./src/index"]
},
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true
}
}