Bump targets for test/automation and test/integration (#165298)

Also enables strict mode for test/integration since it only had strict null checks previously
This commit is contained in:
Matt Bierner 2022-11-02 17:10:12 -07:00 committed by GitHub
parent 57d64af6ad
commit 4efa993b13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"target": "es2020",
"strict": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
@ -9,7 +9,7 @@
"sourceMap": true,
"declaration": true,
"lib": [
"es2016",
"es2020",
"dom"
]
},

View file

@ -4,14 +4,14 @@
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"target": "es2017",
"strictNullChecks": true,
"target": "es2020",
"strict": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"lib": [
"es2016",
"es2020",
"dom"
]
},