diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index a8e24c7dacb3..a69077db1105 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -25,6 +25,7 @@ _Released 12/3/2024 (PENDING)_ - The `cypress/angular-signals` test harness is no longer included in the Cypress binary. Instead, signals support is now shipped with `cypress/angular`! This requires `rxjs` to be installed as a `peerDependency`. Addresses [#29606](https://github.com/cypress-io/cypress/issues/29606). - Cypress Component Testing no longer supports `create-react-app`. Addresses [#30028](https://github.com/cypress-io/cypress/issues/30028). - Cypress Component Testing no longer supports `@vue/cli-service`. Addresses [#30481](https://github.com/cypress-io/cypress/issues/30481). +- The Cypress configuration wizard for Component Testing supports TypeScript 4.0 or greater. Addresses [#30493](https://github.com/cypress-io/cypress/issues/30493). **Deprecations:** diff --git a/packages/scaffold-config/src/dependencies.ts b/packages/scaffold-config/src/dependencies.ts index 8557a19d6bb0..eeaa1e96da7d 100644 --- a/packages/scaffold-config/src/dependencies.ts +++ b/packages/scaffold-config/src/dependencies.ts @@ -40,7 +40,7 @@ export const WIZARD_DEPENDENCY_TYPESCRIPT = { package: 'typescript', installer: 'typescript', description: 'TypeScript is a language for application-scale JavaScript', - minVersion: '^3.4.0 || ^4.0.0 || ^5.0.0', + minVersion: '^4.0.0 || ^5.0.0', } as const export const WIZARD_DEPENDENCY_VITE = {