Files
DefinitelyTyped/types/jest-axe/tsconfig.json
Josh Goldberg c37cd112da Added jest-axe typings (#25623)
* Started on jest-axe

* Fixed up some things

* TS@2.4

* lint fix; axe-core dependency

* Update index.d.ts

* Update jest-axe-tests.ts
2018-05-08 15:07:18 -07:00

24 lines
489 B
JSON

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