Skip to content

Commit

Permalink
build: ignore __examples__ folder
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraghazra committed Oct 1, 2020
1 parent 5c61a3a commit 3f820e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion babel-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ module.exports = {
},
],
].filter(Boolean),
ignore: ["**/*/__tests__", "**/*/stories"],
ignore: ["**/*/__tests__", "**/*/stories", "**/*/__examples__"],
};
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,11 @@
"resolveJsonModule": true,
"types": ["node", "jest", "@testing-library/jest-dom"]
},
"exclude": ["node_modules", "dist", "**/*/stories", "**/*/__tests__"]
"exclude": [
"node_modules",
"dist",
"**/*/stories",
"**/*/__tests__",
"**/*/__examples__"
]
}

0 comments on commit 3f820e5

Please sign in to comment.