-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
docs: mention needing additional configuration for ts-jest
#13418
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you update all versions of this doc?
@@ -162,6 +162,8 @@ However, there are some [caveats](https://babeljs.io/docs/en/babel-plugin-transf | |||
npm install --save-dev ts-jest | |||
``` | |||
|
|||
In order for Jest to transpile TypeScript with ts-jest, you may also need to create a [configuration](https://kulshekhar.github.io/ts-jest/docs/getting-started/installation#jest-config-file) file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order for Jest to transpile TypeScript with ts-jest, you may also need to create a [configuration](https://kulshekhar.github.io/ts-jest/docs/getting-started/installation#jest-config-file) file | |
In order for Jest to transpile TypeScript with ts-jest, you may also need to create a [configuration](https://kulshekhar.github.io/ts-jest/docs/getting-started/installation#jest-config-file) file. |
Sure thing |
f4cf165
to
1e6d792
Compare
Update GettingStarted.md docs: link to ts-jest config Mention needing addition configuration for ts-jest Co-Authored-By: Simen Bekkhus <sbekkhus91@gmail.com>
1e6d792
to
635bae3
Compare
OK, I think I got all the versions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
ts-jest
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
I added a link to ts-jest docs configuration. Currently, if you try to run parse .ts files without a config file, you are brought to this page on the docs. There is only a link to the github repo for ts-jest. This small change will help save time and googling for users. We won't have to worry about keeping this up to date since it's just a link to their documentation page.
Test plan
None, this is just a change to the docs.