From b5eec71a57c33eb4da07665c57e8dfb1b1804523 Mon Sep 17 00:00:00 2001 From: thepassle Date: Fri, 20 Oct 2023 14:48:28 +0200 Subject: [PATCH] feat: up tsconfig target for more modern syntax --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c5e2f59a9..8d41161b7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "strict": true, - "target": "es6", + "target": "ESNext", "module": "ESNext", "moduleResolution": "node", "allowSyntheticDefaultImports": false,