DefinitelyTyped/types/react-axe/tsconfig.json
Akshay Karthik 0969775954 [react-axe] Initial set of typedefs (#34108)
* Add dts for react-axe

* Lint fixes

* Remove the v from the version header

* Set strictFunctionTypes to true per code review
2019-03-25 09:49:54 -07:00

26 lines
534 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-axe-tests.tsx"
]
}