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

Commit c04f3e8

Browse files
committed
fix(build): transpile ESM bundle to ES5 syntax
1 parent 38e3d98 commit c04f3e8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tsconfig.cjs.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"module": "CommonJS",
5-
"target": "es5",
65
"outDir": "./dist/cjs"
76
}
87
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2017",
3+
"target": "ES5",
44
"module": "ES2020",
55
"declaration": true,
66
"strict": true,

0 commit comments

Comments
 (0)