From 8a26e6c772034b48a67d1f5ede72237aa7ae97ac Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Fri, 19 Feb 2021 16:14:13 +0100 Subject: [PATCH] Update tsconfig.json --- tsconfig.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 43e8459..f2a88e9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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" + ] }