From c6ad32741349a55ebd897a8d664cfbeaac708e1f Mon Sep 17 00:00:00 2001 From: thepassle Date: Wed, 1 Nov 2023 15:38:51 +0100 Subject: [PATCH] feat: up tsconfig target for more modern syntax --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 4e3f073ac..f203e86b9 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,7 +1,7 @@ { "compilerOptions": { "strict": true, - "target": "es6", + "target": "esnext", "module": "esnext", "moduleResolution": "node", "strictNullChecks": true,