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

View File

@@ -1,7 +1,8 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es2018", "target": "es2022",
"moduleResolution": "node", "module": "es2022",
"moduleResolution": "bundler",
"strict": true, "strict": true,
"forceConsistentCasingInFileNames": true "forceConsistentCasingInFileNames": true
}, },