Skip to content

Commit

Permalink
fix: make dist/esm output ES2015 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeurer committed Jun 11, 2020
1 parent e37ea83 commit f2c16cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"scripts": {
"build": "concurrently \"npm:build:cjs\" \"npm:build:esm\"",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --target es5",
"build:esm": "tsc --module esnext --moduleResolution node --outDir dist/esm --target esnext",
"build:esm": "tsc --module es2015 --moduleResolution node --outDir dist/esm --target es2015",
"prepare": "npm run build",
"test": "jest"
},
Expand Down

0 comments on commit f2c16cf

Please sign in to comment.