08f6caa645
* feat: add expo plugins * add export * fix import * fix bugs * build `lib` to `CommonJS` * restore `build.gradle` * remove plugin tmp * add expo plugin for ios caching * add docs for expo plugin * fix expo plugin export * fix docs
35 lines
914 B
JSON
35 lines
914 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": "CommonJS",
|
|
"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": false,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": ["examples", "lib", "docs"]
|
|
}
|