From df367639b90af1fe5c174f7a0b66050e0ce55215 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Sun, 21 Jun 2026 06:01:33 +0000 Subject: [PATCH] PR-733704: remove noEmit from tsconfig.cy.json ts-loader requires TypeScript to emit output. noEmit:true was causing "TypeScript emitted no output" errors in the Cypress webpack build. --- tsconfig.cy.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.cy.json b/tsconfig.cy.json index 3744f59..9f36e63 100644 --- a/tsconfig.cy.json +++ b/tsconfig.cy.json @@ -2,8 +2,7 @@ "extends": "./tsconfig.json", "compilerOptions": { "rootDir": ".", - "noEmit": true, - "types": ["cypress", "node"] +"types": ["cypress", "node"] }, "include": [ "src",