2021-02-19 10:19:32 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2021-02-19 10:24:32 -07:00
|
|
|
"react-native-vision-camera": ["../src/index"]
|
2021-02-19 10:19:32 -07:00
|
|
|
},
|
|
|
|
"allowJs": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["esnext"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noStrictGenericChecks": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext"
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"babel.config.js",
|
|
|
|
"jest.config.js",
|
|
|
|
".eslintrc.js"
|
|
|
|
]
|
|
|
|
}
|