2024-01-05 19:19:45 -07:00
|
|
|
{
|
2024-01-31 18:40:12 -07:00
|
|
|
"compilerOptions": {
|
2024-01-31 22:45:00 -07:00
|
|
|
"allowJs": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"jsx": "react-native",
|
|
|
|
"lib": ["esnext"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noStrictGenericChecks": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"outDir": "lib",
|
2024-01-31 18:40:12 -07:00
|
|
|
"paths": {
|
|
|
|
"react-native-vision-camera": [
|
|
|
|
"./react-native-vision-camera/package/src/index"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2024-01-31 22:45:00 -07:00
|
|
|
"include": ["react-native-vision-camera/package/src", "."],
|
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"extends": ["expo/tsconfig.base"]
|
2024-01-05 19:19:45 -07:00
|
|
|
}
|