build: switch to ES2022 target with bundler module resolution

This commit is contained in:
Salman Muin Kayser Chishti
2026-04-09 18:13:39 +00:00
committed by Salman Muin Kayser Chishti
parent 34cab63564
commit 84e9b9d216
+3 -2
View File
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"target": "es2018",
"moduleResolution": "node",
"target": "es2022",
"module": "es2022",
"moduleResolution": "bundler",
"strict": true,
"forceConsistentCasingInFileNames": true
},