react-native-video/tsconfig.json
Olivier Bouillet 16a43dc7af
Chore/prepare alpha 9 release (#3320)
* chore: add missing PR in changeLog

* chore: add a link to previous documentation

* fix: add prepare open to build the package prior to release

* fix: do not include doc in generated package

* chore: include lib in package

* chore: fix tsc call which tries to parse docs folder


---------

Co-authored-by: olivier <olivier.bouillet@ifeelsmart.com>
2023-10-27 08:59:46 +02:00

34 lines
869 B
JSON

{
"compilerOptions": {
"rootDir": "./src",
"outDir": "lib",
"paths": {
"react-native-video": ["./src/index"]
},
"composite": true,
"declaration": true,
"sourceMap": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"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",
"verbatimModuleSyntax": true
},
"exclude": ["examples", "lib", "docs"]
}