Add twirp client with retry logic

This commit is contained in:
Bethany
2023-08-02 12:03:41 -07:00
parent 39a7ba7bbd
commit 898dd8c2a1
11 changed files with 209 additions and 12 deletions

View File

@@ -3,9 +3,14 @@
"compilerOptions": {
"baseUrl": "./",
"outDir": "./lib",
"rootDir": "./src"
"rootDir": "./src",
"lib": [
"es2020"
],
"module": "commonjs",
"target": "es2020"
},
"include": [
"./src"
]
}
}