Skip to content

Commit 176b1db

Browse files
authored
Merge pull request microsoft#259693 from mjbvz/alert-reptile
Update target for build and test scripts
2 parents cf324db + e51d57a commit 176b1db

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.eslint-plugin-local/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
3-
"target": "es2020",
3+
"target": "es2024",
44
"lib": [
5-
"ES2020"
5+
"ES2024"
66
],
77
"module": "commonjs",
88
"esModuleInterop": true,

build/npm/jsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
3-
"target": "es2020",
3+
"target": "es2024",
44
"lib": [
5-
"ES2020"
5+
"ES2024"
66
],
77
"module": "node16",
88
"checkJs": true,

build/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
3-
"target": "es2022",
3+
"target": "es2024",
44
"lib": [
5-
"ES2020"
5+
"ES2024"
66
],
77
"module": "nodenext",
88
"alwaysStrict": true,

test/automation/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es2020",
4+
"target": "es2024",
55
"strict": true,
66
"noUnusedParameters": false,
77
"noUnusedLocals": true,

test/integration/browser/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"noImplicitAny": false,
55
"removeComments": false,
66
"preserveConstEnums": true,
7-
"target": "es2020",
7+
"target": "es2024",
88
"strict": true,
99
"noUnusedParameters": false,
1010
"noUnusedLocals": true,

test/smoke/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"noImplicitAny": false,
55
"removeComments": false,
66
"preserveConstEnums": true,
7-
"target": "es2020",
7+
"target": "es2024",
88
"strict": true,
99
"noUnusedParameters": false,
1010
"noUnusedLocals": true,

0 commit comments

Comments
 (0)