16a43dc7af
* 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>
34 lines
869 B
JSON
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"]
|
|
}
|