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


Former-commit-id: 9f49d91197
This commit is contained in:
cedoor
2024-03-25 13:04:21 +00:00
parent aa0c9ceba2
commit f569b2fc70

View File

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