mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-10 22:44:43 +08:00
For the latest version (v5) of react-router-redux, the package was moved from [an external repo](https://github.com/reactjs/react-router-redux) to [live alongside](https://github.com/ReactTraining/react-router/tree/master/packages/react-router-redux) the react-router code base. The API has also changed significantly and merits a freshly written type definition. The current version (v4) was moved into its own directory.
25 lines
506 B
JSON
25 lines
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"jsx": "react",
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"react-router-redux-tests.tsx"
|
|
]
|
|
}
|