chore: update ts target to es2020

Targeting ES2020 looks like it's generally fine today. It's widely supported across modern browsers
and environments and it would allow Semaphore bundles to use new ES features natively, like arrow
functions, promises, and classes, which can improve code readability and efficiency.

re #688
This commit is contained in:
cedoor
2024-03-25 13:04:21 +00:00
parent 895f9e1e9e
commit 9f49d91197

View File

@@ -2,7 +2,7 @@
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "ES5",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,