react-native-camera-kit-no-.../tsconfig.json
Seph Soliman ca2bcc3a0a Fixed typescript types not showing
Breaking change: Use useRef<CameraApi>() instead of useRef<Camera>()
Fixed incorrect type of errorMessage
2024-05-16 15:18:51 -07:00

29 lines
741 B
JSON

{
"compilerOptions": {
"rootDir": "./src",
"declaration": true,
"declarationDir": "./dist/",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"jsx": "react-native",
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"outDir": "./dist",
"sourceMap": true,
"removeComments": true,
"strictNullChecks": true,
"target": "esnext",
"skipLibCheck": true,
"strict": true,
"verbatimModuleSyntax": true
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
"exclude": ["**/__tests__/*", "*.test.tsx"]
}