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" + ] }