mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
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`.
24 lines
489 B
JSON
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"
|
|
]
|
|
}
|