DefinitelyTyped/types/react-copy-write/tsconfig.json
Sam A. Horvath-Hunt cbc9a55269 Add typings for react-copy-write (#27099)
* Add initial types for react-copy-write

* render functions can be `null` and fixes for select prop

`selector` is named `select` now. Also I believe it should take an array of selectors.

* Improve react-copy-write typings; bump min TS to 2.8

* Add additional potential solution in comment

* Make RenderFn args DeepReadonly

* Add state param to `MutateFn`

* Add missing semicolon
2018-07-06 09:50:14 -07:00

26 lines
541 B
JSON

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