Created
January 19, 2021 01:19
-
-
Save maraisr/0620daceaca42e6f17f89bcfb4d13411 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
main: "cjs", | |
module: "esm node", | |
browser: "esm browser", | |
unpkg: "umd", | |
"exports": { | |
".": { | |
"browser": { | |
"import": "esm browser", | |
"require": "cjs browser" | |
}, | |
"import": "esm node", | |
"require": "cjs node" | |
}, | |
}, | |
"./foobar": { ... }, | |
"./package.json": "./package.json" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment