You can try modify the cypress.config.ts by adding this line:
supportFile: 'cypress/support/index.ts'
As shown below:
export default defineConfig({ e2e: {
supportFile: 'cypress/support/index.ts',
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});