From 134c788a30b3b592a1da19a096ef2afb6d6bf3a0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <michael@minelli.me>
Date: Thu, 18 Jan 2024 13:38:02 +0100
Subject: [PATCH] TSConfig => Update to target to ES2022

---
 NodeApp/tsconfig.json | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/NodeApp/tsconfig.json b/NodeApp/tsconfig.json
index d7ed405..6dd8b7e 100644
--- a/NodeApp/tsconfig.json
+++ b/NodeApp/tsconfig.json
@@ -1,16 +1,16 @@
 {
     "compilerOptions": {
-        "rootDir": "src",
-        "outDir": "dist",
-        "strict": true,
-        "target": "es6",
-        "module": "commonjs",
-        "sourceMap": true,
-        "esModuleInterop": true,
+        "rootDir"         : "src",
+        "outDir"          : "dist",
+        "strict"          : true,
+        "target"          : "ES2022",
+        "module"          : "commonjs",
+        "sourceMap"       : true,
+        "esModuleInterop" : true,
         "moduleResolution": "node",
-        "noImplicitAny": true
+        "noImplicitAny"   : true
     },
-    "exclude": [
+    "exclude"        : [
         "node_modules"
     ]
 }
\ No newline at end of file
-- 
GitLab