diff --git a/rollup.config.js b/rollup.config.js index c8ccb860..ad12380b 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -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" }), diff --git a/tsconfig.json b/tsconfig.json index f3e1c6fb..902f538d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,5 +17,5 @@ "target": "es6" }, "include": ["src", "stories"], - "exclude": ["node_modules", "dist", "__mocks__"] + "exclude": ["node_modules", "dist"] }