Skip to content

Commit cd87f6d

Browse files
committed
Update target ES version to 2023
Justification: Vite uses ES2023. We also want to use newest toys that come with ES2025
1 parent 37f93b3 commit cd87f6d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

services/backend/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2021",
3+
"target": "ES2023",
44
"lib": ["ES2023"],
55
"allowJs": true,
66
"moduleResolution": "nodenext",

services/frontend/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2020",
3+
"target": "ES2023",
44
"useDefineForClassFields": true,
55
"lib": ["ES2023", "DOM", "DOM.Iterable"],
66
"module": "ESNext",
77
"skipLibCheck": true,
88

99
/* Bundler mode */
1010
"moduleResolution": "bundler",
11-
"allowImportingTsExtensions": true,
1211
"resolveJsonModule": true,
1312
"allowJs": true,
1413
"isolatedModules": true,

services/shared/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2021",
3+
"target": "ES2023",
44
"lib": ["ES2023"],
55
"allowJs": true,
66
"module": "nodenext",

0 commit comments

Comments
 (0)