Files
react-navigation/tsconfig.json
2020-05-01 01:45:10 +02:00

35 lines
1.1 KiB
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@react-navigation/core": ["./packages/core/src"],
"@react-navigation/native": ["./packages/native/src"],
"react-navigation": ["./packages/react-navigation/src"],
"react-navigation-animated-switch": ["./packages/animated-switch/src"],
"react-navigation-drawer": ["./packages/drawer/src"],
"react-navigation-material-bottom-tabs": ["./packages/material-bottom-tabs/src"],
"react-navigation-stack": ["./packages/stack/src"],
"react-navigation-tabs": ["./packages/tabs/src"],
},
"composite": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"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"
}
}