From fe61e4649075afd8e608167863338218dc01adab Mon Sep 17 00:00:00 2001 From: Ramona Hartinger Date: Tue, 17 Sep 2024 09:19:12 +0200 Subject: [PATCH] chore: changed tsconfig lib --- tsconfig.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8f4a25aa..9c4c8f15 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,12 +3,10 @@ "module": "Node16", "target": "ES2022", "outDir": "out", - "lib": [ - "ES2022" - ], + "lib": ["ES2023"], "sourceMap": true, "rootDir": "src", - "strict": true /* enable all strict type-checking options */ + "strict": true /* enable all strict type-checking options */ /* Additional Checks */ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */