DefinitelyTyped/types/aria-query/tsconfig.json
Sebastian Silbermann 24665a0223 feat(aria-query): Add types (#38515)
* Ported flow types

* Fix example from readme

* Add type tests for elementRoles and roleElements

* Fix lint issues
2019-09-23 14:21:32 -07:00

25 lines
510 B
JSON

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