react-native-vision-camera/tsconfig.json

35 lines
819 B
JSON
Raw Normal View History

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,
"jsx": "react",
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"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
},
"exclude": [
"node_modules",
"babel.config.js",
"jest.config.js",
".eslintrc.js"
]
2021-02-19 08:07:53 -07:00
}