Skip to content

Commit b181386

Browse files
authored
Fix types not being included in the package (#780)
1 parent 499c365 commit b181386

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
},
3333
"files": [
3434
"dist/lib",
35-
"dist/*.js"
35+
"dist/*.js",
36+
"dist/*.d.ts"
3637
],
3738
"keywords": [
3839
"cli-app",

tsconfig.json

-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@
55
"resolveJsonModule": true,
66
"sourceMap": true
77
},
8-
"include": [
9-
"**/*.ts",
10-
"scripts/setup-tests.js",
11-
"package.json",
12-
"**/*.tsx"
13-
],
148
"exclude": [
159
"node_modules",
1610
"dist"

0 commit comments

Comments
 (0)