From 84e9b9d216ad37906c71057def44354950cff0c8 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Thu, 9 Apr 2026 18:13:39 +0000 Subject: [PATCH] build: switch to ES2022 target with bundler module resolution --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9f5c401..49abd10 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { - "target": "es2018", - "moduleResolution": "node", + "target": "es2022", + "module": "es2022", + "moduleResolution": "bundler", "strict": true, "forceConsistentCasingInFileNames": true },