Update tsconfig.json

This commit is contained in:
Marc Rousavy 2021-02-19 16:14:13 +01:00
parent 7d4cbd8c67
commit 8a26e6c772

View File

@ -4,6 +4,7 @@
"paths": {
"react-native-vision-camera": ["./src/index"]
},
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
@ -15,7 +16,6 @@
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
@ -23,5 +23,11 @@
"skipLibCheck": true,
"strict": true,
"target": "esnext"
}
},
"exclude": [
"node_modules",
"babel.config.js",
"jest.config.js",
".eslintrc.js"
]
}