Skip to content

Commit 78e607d

Browse files
authored
[server] bump js target (#18334)
1 parent 4c55db8 commit 78e607d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

components/gitpod-db/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"downlevelIteration": true,
1515
"module": "commonjs",
1616
"moduleResolution": "node",
17-
"target": "es6",
17+
"target": "ES2021",
1818
"jsx": "react",
1919
"sourceMap": true,
2020
"declaration": true,

components/server/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,15 @@
1414
"downlevelIteration": true,
1515
"module": "commonjs",
1616
"moduleResolution": "node",
17-
"target": "es6",
17+
"target": "ES2021",
1818
"jsx": "react",
1919
"sourceMap": true,
2020
"declaration": true,
2121
"declarationMap": true,
2222
"skipLibCheck": true,
2323
"useUnknownInCatchVariables": false,
2424
"typeRoots": [
25-
"./src/typings",
26-
"../../node_modules/@types"
25+
"./src/typings"
2726
]
2827
},
2928
"include": [

components/ws-manager-bridge/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"downlevelIteration": true,
1616
"module": "commonjs",
1717
"moduleResolution": "node",
18-
"target": "es2017",
18+
"target": "ES2021",
1919
"jsx": "react",
2020
"sourceMap": true,
2121
"declaration": true,

0 commit comments

Comments
 (0)