Files
DefinitelyTyped/types/retry/tsconfig.json
Stan Goldmann 3a514e8e36 Address requested code changes
* Remove options file and include options as well as  JSDocs inline
* Hint retry to `Error` classes
* Remove optional flag of `current` in the callback parameter
* Fix typos
2017-07-14 11:09:44 +02:00

24 lines
411 B
JSON

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