Skip to content

Commit

Permalink
fix: ensure es5 target is bundle-compatible (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
AviVahl authored Feb 5, 2022
1 parent c83d7d0 commit 23c7201
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
],
"main": "./loupe.js",
"module": "./index.js",
"browser": "./loupe.js",
"browser": {
"./index.js": "./loupe.js",
"util": false
},
"repository": {
"type": "git",
"url": "https://github.com/chaijs/loupe"
Expand All @@ -37,7 +40,7 @@
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": "2020"
"ecmaVersion": 2020
},
"env": {
"es6": true
Expand Down

0 comments on commit 23c7201

Please sign in to comment.