Skip to content

Commit 55433a6

Browse files
committed
Update TS target version
Should be very safe, since ES2020 supports back to Node 14, and we're running far ahead of that in the prod node version at least. Main goal is just avoiding syntactic desugaring, which adds lots of noise (and probably perf hits) for things like async/await that we'd like to avoid.
1 parent 1cc10bd commit 55433a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"rootDir": "src",
88
"outDir": "lib",
99
"strict": true,
10-
"target": "es2017",
10+
"target": "es2020",
1111
"resolveJsonModule": true,
1212
"esModuleInterop": true,
1313
"composite": true,

0 commit comments

Comments
 (0)