mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
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.
25 lines
522 B
JSON
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"
|
|
]
|
|
}
|