Update tsconfig.json touse ES2021

Node16+ allows usage of ES2021 features, and frankly ES2015 is very old now.
This commit is contained in:
Will Hunt 2022-07-26 15:03:22 +01:00 committed by GitHub
parent eb2c25da7b
commit f60c29a7e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
"newLine": "LF", "newLine": "LF",
"noImplicitReturns": true, "noImplicitReturns": true,
"noUnusedLocals": true, "noUnusedLocals": true,
"target": "es2015", "target": "es2021",
"noImplicitAny": true, "noImplicitAny": true,
"sourceMap": true, "sourceMap": true,
"strictNullChecks": true, "strictNullChecks": true,