DefinitelyTyped/types/react-redux/tsconfig.json
Nicholas Boll f1dce7be19 [react-redux] Fix map factories
* Changed the order of factory vs object in mapping functions so TS picks the right one
* Added test cases and test style
2017-09-11 00:21:31 -06:00

26 lines
540 B
JSON

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