promises-arrow
Version:
`promises-arrow` is a library of (1) higher order functions, such as `map()` and `filter()`where the function returns a Promisel (2) Functions that wait, returning a Promise; (3) Functions that manage retrying an operation N times until it succeeds; (4,5)
20 lines (19 loc) • 416 B
JSON
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"rootDir": ".",
"outDir": "./dist",
"moduleResolution": "node",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"sourceMap": true,
"declaration": true
},
"include": [
"./src"
]
}