We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3719ee3 commit 41629acCopy full SHA for 41629ac
.gitignore
@@ -1,5 +1,6 @@
1
*.d.ts
2
*.log
3
+*.map
4
*.tsbuildinfo
5
.DS_Store
6
coverage/
package.json
@@ -24,9 +24,10 @@
24
},
25
"exports": "./index.js",
26
"files": [
27
- "lib/",
+ "index.d.ts.map",
28
"index.d.ts",
29
- "index.js"
+ "index.js",
30
+ "lib/"
31
],
32
"funding": {
33
"type": "opencollective",
tsconfig.json
@@ -2,6 +2,7 @@
"compilerOptions": {
"checkJs": true,
"customConditions": ["development"],
+ "declarationMap": true,
"declaration": true,
7
"emitDeclarationOnly": true,
8
"exactOptionalPropertyTypes": true,
0 commit comments