DefinitelyTyped/types/domready/tsconfig.json
Daniel Cassidy a6c82d0c3f [domready] Update to 1.0, apply lint rules, fix common mistakes (#27181)
* Apply standard lint rules to domready.

* Apply strict null checks to domready.

* Return value of callback is not used so declare it void.

* Set domready version number.

domready types are up to date as of domready 1.0.8.
2018-07-12 00:43:15 -07:00

24 lines
489 B
JSON

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