Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update typescript doc to specify minimum required TS version #2945

Merged
merged 2 commits into from
Jul 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/guides/tooling/typescript-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Cypress ships with {% url "official type declarations" https://github.com/cypres

## Install TypeScript

You'll need to have TypeScript installed within your project to have TypeScript support within Cypress.
You'll need to have TypeScript 3.4+ installed within your project to have TypeScript support within Cypress.

```bash
npm install typescript
Expand Down Expand Up @@ -129,6 +129,7 @@ module.exports = (on, config) => {
```

{% history %}
{% url "5.0.0" changelog#5-0-0 %} | Raised minimum required TypeScript version from 2.9+ to 3.4+
{% url "4.4.0" changelog#4-4-0 %} | Added support for TypeScript without needing your own transpilation through preprocessors.
{% endhistory %}

Expand Down