Skip to content

Commit 3ad2c8e

Browse files
committed
fix(ci): silence TS 6 deprecation for downlevelIteration
Cypress 14.5.4's webpack-preprocessor injects `downlevelIteration: true` into its internal ts-loader config. TS 6 errors on it as deprecated and blocks spec compilation. Set `ignoreDeprecations: "6.0"` at the root so the cypress tsconfig inherits it and the deprecation downgrades to a silent acceptance until TS 7.
1 parent 65bdc98 commit 3ad2c8e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"noEmit": true,
2929
"esModuleInterop": true,
3030
"forceConsistentCasingInFileNames": true,
31+
"ignoreDeprecations": "6.0",
3132
"skipLibCheck": true
3233
},
3334
"include": [

0 commit comments

Comments
 (0)