Skip to content

docs: fix guides/using-with-typescript.md #899

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

Merged
merged 2 commits into from
Aug 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/using-with-typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ And create a project by running:
$ vue create hello-world
```

In the CLI prompt, choose to manually select features, select TypeScript, and press enter. This will create a project with TypeScript already configured.
In the CLI prompt, choose to `Manually select features`, select TypeScript, and press enter. This will create a project with TypeScript already configured.

::: tip NOTE
If you want a more detailed guide on setting up Vue with TypeScript, checkout the [TypeScript Vue starter guide](https://github.com/Microsoft/TypeScript-Vue-Starter).
Expand Down Expand Up @@ -90,7 +90,7 @@ In order to use TypeScript files in tests, we need to set up Jest to compile Typ
$ npm install --save-dev ts-jest
```

Next, we need to tell Jest to process JavaScript test files with `ts-jest` by adding an entry under `jest.transform` in `package.json`:
Next, we need to tell Jest to process TypeScript test files with `ts-jest` by adding an entry under `jest.transform` in `package.json`:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice catch


``` json
{
Expand Down