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