More info here: https://github.com/robbyrussell/oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
More info here: https://github.com/robbyrussell/oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
// From: https://stackoverflow.com/questions/43451392/how-to-get-catch-after-retrywhen | |
Observable.defer(() => Observable.throw("It's broken")) | |
.retryWhen(err => { | |
console.log('retry'); | |
let retries = 0; | |
return err | |
.delay(1000) | |
.map(error => { | |
if (retries++ === 5) { | |
throw error; |
{ | |
"taskName": "ts-errors", | |
"command": "tsc", | |
"type": "shell", | |
"args": [ | |
"-p", | |
".", | |
"--noEmit" | |
], | |
"options": { |