Skip to content

Commit 1bdf89b

Browse files
committed
fix: tsconfig misconfiguration for esm support
1 parent 2a9372e commit 1bdf89b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
"baseUrl": "./src/",
55
"declaration": true,
66
"esModuleInterop": true,
7+
"moduleResolution": "node",
78
"noImplicitAny": true,
89
"outDir": "./dist",
9-
"skipLibCheck": true
10+
"skipLibCheck": true,
11+
"target": "ES2020"
1012
},
1113
"include": ["./src/**/*"]
1214
}

0 commit comments

Comments
 (0)