2023-10-06 10:39:14 -06:00
|
|
|
{
|
|
|
|
"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"],
|
2024-07-10 03:49:13 -06:00
|
|
|
"module": "CommonJS",
|
2023-10-06 10:39:14 -06:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitUseStrict": false,
|
|
|
|
"noStrictGenericChecks": false,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
2024-07-10 03:49:13 -06:00
|
|
|
"verbatimModuleSyntax": false,
|
|
|
|
"allowSyntheticDefaultImports": true
|
2023-10-06 10:39:14 -06:00
|
|
|
},
|
2023-10-27 00:59:46 -06:00
|
|
|
"exclude": ["examples", "lib", "docs"]
|
2023-10-06 10:39:14 -06:00
|
|
|
}
|