DefinitelyTyped/types/react-measure/tsconfig.json
Stuart Olivera 7397dcc6d0 [react-measure][fix] Support useRef for innerRef prop on Measure (#41661)
* [react-measure][fix] Allow RefObject for innerRef prop on Measure

* Fix semicolons
2020-01-21 16:26:02 -08:00

27 lines
579 B
JSON

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