From c300125f6400c5595343de9931ce95beee1a3910 Mon Sep 17 00:00:00 2001 From: bytedream Date: Thu, 17 Apr 2025 02:26:41 +0200 Subject: [PATCH] Set javascript target to es2021 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0824efe..a71182d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "extends": "@tsconfig/svelte/tsconfig.json", "compilerOptions": { "allowSyntheticDefaultImports": true, - "target": "es2019", + "target": "es2021", "module": "esnext", "useDefineForClassFields": true, "resolveJsonModule": true,