1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Switch typescript target to es2020 as we use new things like Promise.allSettled and it needs it

This commit is contained in:
Michael Telatynski
2021-06-18 15:30:53 +01:00
parent cbce2f46c3
commit b760fa0ff5

View File

@@ -5,7 +5,7 @@
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es2016",
"target": "es2020",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "./lib",