DefinitelyTyped/types/requestretry/tsconfig.json
Eric Byers ca6ef96651 Adding typings for requestretry (#16966)
* Basic framework for requestretry

* Start of tests

* Fixing some linting issues

* More formatting and cleanup

* Switching to a non module

* Finishing the tests

* Fixing formatting for new tests

* Remove unneeded types

* Regenerate base files again
2017-06-05 11:21:55 -07:00

23 lines
456 B
JSON

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