From 1a9ed4d4fe8133063d9f77f4d888157ecf6c3895 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Fri, 31 Jan 2020 15:15:11 -0500 Subject: [PATCH] Add `es2018.promises` tsconfig lib target. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 1949c951d3..178c0cd9fb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "module": "commonjs", "target": "es5", - "lib": ["es2017", "dom", "esnext.asynciterable"], + "lib": ["es2017", "dom", "esnext.asynciterable", "es2018.promise"], "experimentalDecorators": true, "downlevelIteration": true, "noImplicitReturns": true,