Skip to content

Commit 4efa993

Browse files
authored
Bump targets for test/automation and test/integration (microsoft#165298)
Also enables strict mode for test/integration since it only had strict null checks previously
1 parent 57d64af commit 4efa993

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/automation/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es2017",
4+
"target": "es2020",
55
"strict": true,
66
"noUnusedParameters": false,
77
"noUnusedLocals": true,
88
"outDir": "out",
99
"sourceMap": true,
1010
"declaration": true,
1111
"lib": [
12-
"es2016",
12+
"es2020",
1313
"dom"
1414
]
1515
},

test/integration/browser/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"noImplicitAny": false,
55
"removeComments": false,
66
"preserveConstEnums": true,
7-
"target": "es2017",
8-
"strictNullChecks": true,
7+
"target": "es2020",
8+
"strict": true,
99
"noUnusedParameters": false,
1010
"noUnusedLocals": true,
1111
"outDir": "out",
1212
"sourceMap": true,
1313
"lib": [
14-
"es2016",
14+
"es2020",
1515
"dom"
1616
]
1717
},

0 commit comments

Comments
 (0)