Files
react-navigation/tsconfig.json
2021-06-05 07:33:26 +02:00

30 lines
811 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@react-navigation/*": ["./packages/*/src"]
},
"composite": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext"
},
"exclude": ["packages/*/lib", "packages/flipper-plugin-react-navigation"]
}