### Problem description: I have cypress types working and configured in tsconfig.json, however, the type does not appear to work outside of the `/cypress` folder. ``` { "extends": "./tsconfig.json", "compilerOptions": { "types": [ "cookie-session", "cypress", "node", "cypress-real-events", "cypress-wait-until", "@testing-library/cypress", "@cypress/grep", "webpack-env" ] }, "exclude": ["**/*.test.tsx", "**/*.test.ts", "**/__tests__", "common/test-utils"], "include": [ "./cypress.config.ts", "cypress", "**/*.cy.tsx", "**/*.d.ts", "webapp/src", "ui", "common", "./**/*.json", "webapp/Config.ts" ] } ```