From 0279aab41e4c832dafe811633762463366b5f3d5 Mon Sep 17 00:00:00 2001 From: 38elements <38elements@users.noreply.github.com> Date: Sat, 4 Aug 2018 14:36:46 +0900 Subject: [PATCH 1/2] docs: improve guides/using-with-typescript.md --- docs/guides/using-with-typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/using-with-typescript.md b/docs/guides/using-with-typescript.md index d18445903..4aaea0f99 100644 --- a/docs/guides/using-with-typescript.md +++ b/docs/guides/using-with-typescript.md @@ -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). From 8d78a538ea49eab1dd8f51132fdbfedb691dae7e Mon Sep 17 00:00:00 2001 From: 38elements <38elements@users.noreply.github.com> Date: Sat, 4 Aug 2018 19:14:18 +0900 Subject: [PATCH 2/2] Update using-with-typescript.md --- docs/guides/using-with-typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/using-with-typescript.md b/docs/guides/using-with-typescript.md index 4aaea0f99..f9b24c5e4 100644 --- a/docs/guides/using-with-typescript.md +++ b/docs/guides/using-with-typescript.md @@ -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`: ``` json {