DefinitelyTyped/types/react-navigation/tsconfig.json
Matt McCutchen 8b93c6cd5b react-navigation: Make declarations work with strictFunctionTypes.
Believed to fix https://stackoverflow.com/q/53154003.

This reverts 4464cbbfe7.  I was unable to
reproduce the issue that that commit was originally trying to fix.
Without reverting it, the BackButtonWithNavigationWithExplicitProps test
fails on typescript@next.
2018-11-10 19:27:38 -05:00

25 lines
522 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"jsx": "react",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"react-navigation-tests.tsx"
]
}