DefinitelyTyped/types/react-request/tsconfig.json
Danny Cochran 99b18f3c66 Add typings for react-request (#27376)
* add typings for react-request

* fix react-request types

* remove reference path

* try specifying a typescript version in index.d.ts

* pin to 2.9 instead of 2.9.2

* fix linting issues

* fix index.d.ts lint issues
2018-07-25 11:44:09 -07:00

25 lines
491 B
JSON

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