We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8926289 commit 5a78478Copy full SHA for 5a78478
.gitignore
@@ -11,6 +11,7 @@
11
12
# Generated types
13
*.d.ts
14
+*.d.ts.map
15
16
# Library specific ones
17
index.mjs
declaration.tsconfig.json
@@ -6,6 +6,7 @@
6
],
7
"compilerOptions": {
8
"declaration": true,
9
+ "declarationMap": true,
10
"noEmit": false,
"emitDeclarationOnly": true
}
package.json
@@ -17,7 +17,8 @@
"files": [
18
"index.js",
19
"index.mjs",
20
- "index.d.ts"
+ "index.d.ts",
21
+ "index.d.ts.map"
22
23
"scripts": {
24
"build:0": "run-s clean",
@@ -109,4 +110,4 @@
109
110
"type-coverage": "^2.14.6",
111
"typescript": "^4.1.3"
112
-}
113
+}
0 commit comments