Switch TypeScript target to ES2023

pull/11978/merge
Thibaud Colas 2024-12-19 11:48:43 +00:00
rodzic 14d16ae823
commit dcf523416c
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -5,7 +5,7 @@
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"jsx": "react", "jsx": "react",
"lib": ["ES2022", "ES2022.Intl", "DOM", "DOM.iterable"], "lib": ["ES2023", "ES2023.Intl", "DOM", "DOM.iterable"],
"moduleResolution": "node", "moduleResolution": "node",
"noImplicitAny": false, // TODO: Enable once all existing code is typed "noImplicitAny": false, // TODO: Enable once all existing code is typed
"noUnusedLocals": true, "noUnusedLocals": true,
@ -14,7 +14,7 @@
"skipLibCheck": true, "skipLibCheck": true,
"strictNullChecks": true, "strictNullChecks": true,
"strictPropertyInitialization": true, "strictPropertyInitialization": true,
"target": "ES2022" "target": "ES2023"
}, },
"files": [ "files": [
"client/src/index.ts", "client/src/index.ts",