We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51f656f commit 32071ceCopy full SHA for 32071ce
DESIGN.md PACKAGING_FOR_THE_BROWSER.mdDESIGN.md renamed to PACKAGING_FOR_THE_BROWSER.md
@@ -1,3 +1,29 @@
1
+## manifest
2
+
3
+```json
4
+{
5
+ "sideEffects": false,
6
+ "type": "module",
7
+ "main": "index.js",
8
+ "types": "index.d.ts",
9
+ "browser": {
10
+ "./lib/lib1.js": "./lib/lib1.browser.js",
11
+ "./lib/lib2.js": "./lib/lib2.browser.js",
12
+ "./lib/lib3.js": "./lib/lib3.browser.js"
13
+ },
14
+ "react-native": {
15
16
17
18
19
+ "files": [
20
+ "lib/",
21
+ "index.d.ts",
22
+ "index.js"
23
+ ]
24
+}
25
+```
26
27
## types
28
29
@@ -49,4 +75,4 @@ declare class EventEmitterWrapper implements EventEmitter {
49
75
listenerCount(type: string | symbol): number;
50
76
}
51
77
export { EventEmitterWrapper };
52
-```
78
0 commit comments