Skip to content

Commit 671e5ff

Browse files
committed
Add declaration maps
1 parent 57c9910 commit 671e5ff

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
coverage/
22
node_modules/
3-
.DS_Store
4-
*.log
53
*.d.ts
6-
!/test-types.d.ts
4+
*.d.ts.map
5+
*.log
6+
.DS_Store
77
yarn.lock
8+
9+
!/test-types.d.ts

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"exports": "./index.js",
3030
"files": [
3131
"lib/",
32+
"index.d.ts.map",
3233
"index.d.ts",
3334
"index.js"
3435
],

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"checkJs": true,
44
"customConditions": ["development"],
55
"declaration": true,
6+
"declarationMap": true,
67
"emitDeclarationOnly": true,
78
"exactOptionalPropertyTypes": true,
89
"lib": ["es2022"],

0 commit comments

Comments
 (0)