Enable strict mode and bump target for test/smoke (#165296)

This commit is contained in:
Matt Bierner
2022-11-02 19:23:58 -07:00
committed by GitHub
parent c55ef92fed
commit f945df1b2d
3 changed files with 8 additions and 27 deletions

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"
]
},