document-picker/tsconfig.json
Vojtech Novak db09e24e5d
feat: rework module using react native bob (#421)
* feat: rework module using react native bob

* chore: rebase

* Added windows example (not working for the moment)

* Fixed implementation of the Windows example

* Fixed Lint issues

* Fixed a missing Lint issue

* Fixed another missing Lint issue

* fix: fixed all the pending Lint issues

* Added pickDirectory() implementation for Windows (proper PR) (#444)

* feat: added pickDirectory implementation for Windows

* fix: fixed typo in property name

Co-authored-by: Matteo Pagani <matteo.pagani@microsoft.com>
2021-08-09 20:24:22 +02:00

28 lines
709 B
JSON

{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"react-native-document-picker": ["./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,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext"
}
}