From 10fd2064ba9275b28f81ee7eb5221037bf9b0894 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 7 Feb 2025 01:40:01 +0100 Subject: [PATCH] TS fix --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index cfa92e3..da87c9e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,9 +2,9 @@ "compilerOptions": { // Enable latest features "lib": ["ESNext"], - "target": "ESNext", - "module": "NodeNext", - "moduleResolution": "NodeNext", + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "node", "moduleDetection": "force", "allowJs": true, "declaration": true,