waku-react-native/tsconfig.json
Richard Ramos f525e7368d
chore: upgrade react native and target android 31 (#7)
* chore: upgrade react native and target android 31
* chore: add IOS files
2022-08-29 11:31:45 -04:00

29 lines
737 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@waku/react-native": ["./src/index"]
},
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext"
}
}