We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c9910 commit 671e5ffCopy full SHA for 671e5ff
.gitignore
@@ -1,7 +1,9 @@
1
coverage/
2
node_modules/
3
-.DS_Store
4
-*.log
5
*.d.ts
6
-!/test-types.d.ts
+*.d.ts.map
+*.log
+.DS_Store
7
yarn.lock
8
+
9
+!/test-types.d.ts
package.json
@@ -29,6 +29,7 @@
29
"exports": "./index.js",
30
"files": [
31
"lib/",
32
+ "index.d.ts.map",
33
"index.d.ts",
34
"index.js"
35
],
tsconfig.json
@@ -3,6 +3,7 @@
"checkJs": true,
"customConditions": ["development"],
"declaration": true,
+ "declarationMap": true,
"emitDeclarationOnly": true,
"exactOptionalPropertyTypes": true,
"lib": ["es2022"],
0 commit comments