Skip to content

Commit

Permalink
removed __mocks__ from tsconfig exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
dfee committed Dec 21, 2018
1 parent e0059c1 commit 6db27a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,7 @@ export default {
declaration: true
},
include: ["src"],
exclude: [
"node_modules",
"dist",
"__mocks__",
"**/__tests__",
"stories"
]
exclude: ["node_modules", "dist", "**/__tests__", "stories"]
}
}),
sass({ output: "dist/index.css" }),
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"target": "es6"
},
"include": ["src", "stories"],
"exclude": ["node_modules", "dist", "__mocks__"]
"exclude": ["node_modules", "dist"]
}

0 comments on commit 6db27a9

Please sign in to comment.