Files
DefinitelyTyped/types/react-router-redux/tsconfig.json
Huy Nguyen 294118edad Add type definition for react-router-redux v5
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.
2017-03-28 16:27:46 -04:00

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"
]
}