2021-02-19 08:07:53 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"react-native-vision-camera": ["./src/index"]
|
|
|
|
},
|
2021-02-19 08:14:13 -07:00
|
|
|
"allowJs": false,
|
2021-02-19 08:07:53 -07:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-04-08 04:30:22 -06:00
|
|
|
"jsx": "react-native",
|
2021-02-19 08:07:53 -07:00
|
|
|
"lib": ["esnext"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noStrictGenericChecks": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2021-02-20 08:59:21 -07:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2021-02-19 08:07:53 -07:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
2021-02-19 13:18:31 -07:00
|
|
|
"target": "esnext",
|
|
|
|
"outDir": "lib"
|
2021-02-19 08:14:13 -07:00
|
|
|
},
|
2021-02-20 09:09:57 -07:00
|
|
|
"include": [
|
|
|
|
"src",
|
|
|
|
"example",
|
|
|
|
".eslintrc.js",
|
|
|
|
"babel.config.js",
|
|
|
|
],
|
2021-02-19 08:14:13 -07:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-03-03 04:37:43 -07:00
|
|
|
"lib",
|
|
|
|
"docs"
|
2021-02-19 08:14:13 -07:00
|
|
|
]
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|