35 lines
819 B
JSON
35 lines
819 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"react-native-vision-camera": ["./src/index"]
|
|
},
|
|
"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",
|
|
"outDir": "lib"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"jest.config.js",
|
|
".eslintrc.js"
|
|
]
|
|
}
|