From a7578245d0b3a6d0b17ae46e5d32a1d512154ecb Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 11 May 2023 15:10:23 +1000 Subject: [PATCH] Add es2019.string back to tsconfig Our eslint tests were breaking, as it appears that later years do not include APIs added in previous years, like trimStart() --- ts/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/tsconfig.json b/ts/tsconfig.json index 942f5239c..fa40941e1 100644 --- a/ts/tsconfig.json +++ b/ts/tsconfig.json @@ -29,6 +29,7 @@ "es2018.regexp", "es2019.array", "es2019.object", + "es2019.string", "es2020.string", "es2020.promise", "dom",