limited-rainbow-51650
04/16/2020, 2:26 PMThis SDK uses Node.js and we support the Active LTS and Current releases, as defined by this table.and the `package.json`:
"engines": {
"node": ">=8.13.0 || >=10.10.0"
}
Vrsion 8.13+ should be removed. Your tsconfig.json
says it transpiles to es2016
, which 8.13 definitely does not support everything off. See https://node.green/white-balloon-205
limited-rainbow-51650
04/17/2020, 6:35 AMpackage.json
snippets in tf-bridge code in some providers. It points to a JS dependency of @types/node
which should also be bumped to >=10
then.white-balloon-205