Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 026cbfc

Browse files
committed
Fix TypeScript target for old Node versions
1 parent 0321c2f commit 026cbfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "esnext",
5-
"lib": ["esnext", "webworker"],
4+
"target": "es2018",
5+
"lib": ["es2018", "webworker"],
66
"strict": true,
77
"moduleResolution": "node",
88
"esModuleInterop": true,

0 commit comments

Comments
 (0)