diff --git a/tsconfig.cy.json b/tsconfig.cy.json index 9f36e63..b496026 100644 --- a/tsconfig.cy.json +++ b/tsconfig.cy.json @@ -1,12 +1,18 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "rootDir": ".", -"types": ["cypress", "node"] + "rootDir": "." }, "include": [ "src", "cypress", "src/@types" + ], + "exclude": [ + "node_modules", + "dist", + "**/*.stories.*", + "**/*.test.ts", + "**/*.test.tsx" ] }