DefinitelyTyped/types/recursive-readdir/tsconfig.json
Micah Zoltu 1eca915e24 Fixes definitions to match reality. (#19800)
Return type on ignore function was missing and Promise return type was missing from overloads that didn't take a callback.  Also extracts out a helper type definitions and provides slightly better variable naming for the transient `recursiveReadDir`.
2017-09-26 10:53:30 -07:00

24 lines
489 B
JSON

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