How to correctly configure TypeScript with Vue 3 and Cypress for E2E testing?

I’m working on a Vue 3 project where I’ve decided to use TypeScript for type safety and Cypress for end-to-end (E2E) testing. I followed the standard setup instructions, but I’m running into issues where Cypress tests don’t seem to recognize my TypeScript files properly.

Initialized a Vue 3 project with TypeScript using the Vue CLI.
Installed Cypress using the Vue CLI E2E testing option.
Configured Cypress to recognize TypeScript files by adding a tsconfig.json in the cypress folder.