DefinitelyTyped/types/react-outside-click-handler/tsconfig.json
Ivan Zub 939bed73a7 Add type definitions for airbnb/react-outside-click-handler (#29471)
* Add type definitions for react-outside-click-handler

* Fix tests and fallback to TS 2.9

DT is not supporting typescript 3 yet, so can't properly use defaultProps
2018-10-05 11:29:26 -07:00

25 lines
538 B
JSON

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