From dbf8625378c95bf064774845a7effaf82c0362b5 Mon Sep 17 00:00:00 2001 From: Danny Lin Date: Sun, 7 Nov 2021 02:34:52 -0800 Subject: [PATCH] tsconfig: Update to ES2021 target This allows us to use String#replaceAll. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b4c5d76..b907a75 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "lib", "rootDir": "src", "strict": true, - "target": "es2017" + "target": "es2021" }, "include": [ "src/**/*"