From 4aad5c455dde561d42ca254eda271b04313ea803 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Tue, 26 Jul 2022 15:33:43 +0100 Subject: [PATCH] Update tsconfig.json touse ES2021 (#337) Node16+ allows usage of ES2021 features, and frankly ES2015 is very old now. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 91e41d7..4d9d014 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,7 @@ "newLine": "LF", "noImplicitReturns": true, "noUnusedLocals": true, - "target": "es2015", + "target": "es2021", "noImplicitAny": true, "sourceMap": true, "strictNullChecks": true,