We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3357d commit f32d3f9Copy full SHA for f32d3f9
.gitignore
@@ -1,4 +1,4 @@
1
node_modules
2
.DS_Store
3
-types
4
-lib
+/types
+/lib
.npmignore
@@ -1,10 +1,11 @@
-web_modules
-examples
-docs
-coverage
5
-test
6
-.github
+/web_modules
+/examples
+/docs
+/coverage
+/test
+/.github
7
screenshot.*
8
index.html
9
tsconfig.json
10
.editorconfig
11
+.nojekyll
package.json
@@ -26,7 +26,12 @@
26
"author": "Damien Seguin (https://github.com/dmnsgn)",
27
"sideEffects": false,
28
"type": "module",
29
- "exports": "./index.js",
+ "exports": {
30
+ ".": {
31
+ "types": "./types/index.d.ts",
32
+ "default": "./index.js"
33
+ }
34
+ },
35
"main": "index.js",
36
"types": "types/index.d.ts",
37
"scripts": {
0 commit comments