Skip to content

Commit 6d015b2

Browse files
committed
fix(tsconfig): only include necessary files in package
1 parent 8da39df commit 6d015b2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
],
99
"allowJs": true,
1010
"declaration": true,
11-
"declarationDir": "./types",
12-
"declarationMap": true,
1311
"skipLibCheck": true,
1412
"esModuleInterop": true,
1513
"allowSyntheticDefaultImports": true,
@@ -27,6 +25,10 @@
2725
"src"
2826
],
2927
"exclude": [
28+
"node_modules",
3029
"dist",
30+
"src/stories",
31+
"src/setupTests.ts"
3132
]
3233
}
34+

0 commit comments

Comments
 (0)