DefinitelyTyped/types/focus-within/tsconfig.json
Damien Erambert 81cb59546f Add typings for focus-within (#24935)
* add typings for focus-within

* fix test filenames

* fix typings and tests according to review comments
2018-04-12 10:03:10 -07:00

26 lines
577 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/focus-within-global-tests.ts",
"test/focus-within-import-default-tests.ts"
]
}