react-native-video/tsconfig.json

35 lines
914 B
JSON
Raw Permalink Normal View History

{
"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"]
}