From 774214822a6268cf39461eb57ec0e3be21fcbd92 Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Thu, 11 Mar 2021 14:42:49 -0600 Subject: [PATCH] build: use node12 tsconfig --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e7da535227..b53dda5d67 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,8 +2,8 @@ "exclude": ["integrationTests/ts/**/*"], "compilerOptions": { "module": "commonjs", - "lib": ["es2018"], - "target": "es2018", + "lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"], + "target": "es2019", "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": true,