34 lines
861 B
JSON
34 lines
861 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"]
|
||
|
}
|