From 4a96cb9d078f608bd1fbb9247e70d8ec204490a3 Mon Sep 17 00:00:00 2001 From: kasun Date: Mon, 1 Jun 2026 02:19:43 +0200 Subject: [PATCH] fix: bumbed compilerOptions target --- k8s-bootstrap/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s-bootstrap/tsconfig.json b/k8s-bootstrap/tsconfig.json index 80b5662..5e2c0b7 100644 --- a/k8s-bootstrap/tsconfig.json +++ b/k8s-bootstrap/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "strict": true, "outDir": "bin", - "target": "es2020", + "target": "es2024", "module": "nodenext", "moduleResolution": "nodenext", "sourceMap": true,