Skip to content

Commit 9b13388

Browse files
authored
Update getting-started.md
1 parent 2c8b7fb commit 9b13388

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

docs/getting-started.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
TypeScript compiles into JavaScript. JavaScript is what you are actually going to execute (either in the browser or on the server). So you are going to need the following:
77

88
* TypeScript compiler (OSS available [in source](https://github.com/Microsoft/TypeScript/) and on [NPM](https://www.npmjs.com/package/typescript))
9-
* A TypeScript editor (you can use notepad if you want but I use [alm 🌹](https://alm-tools.github.io/). Also [lots of other IDES support it as well]( https://github.com/Microsoft/TypeScript/wiki/TypeScript-Editor-Support))
10-
11-
12-
![alm editor window](https://raw.githubusercontent.com/alm-tools/alm-tools.github.io/master/screens/main.png)
9+
* A TypeScript editor (you can use notepad if you want but I use [vscode 🌹](https://code.visualstudio.com/). Also [lots of other IDES support it as well]( https://github.com/Microsoft/TypeScript/wiki/TypeScript-Editor-Support))
1310

1411

1512
## TypeScript Version
@@ -24,7 +21,6 @@ npm install -g typescript@next
2421

2522
And now the command line `tsc` will be the latest and greatest. Various IDEs support it too, e.g.
2623

27-
* `alm` always ships with the latest TypeScript version.
2824
* You can ask vscode to use this version by creating `.vscode/settings.json` with the following contents:
2925

3026
```json
@@ -34,7 +30,7 @@ And now the command line `tsc` will be the latest and greatest. Various IDEs sup
3430
```
3531

3632
## Getting the Source Code
37-
The source for this book is available in the books github repository https://github.com/basarat/typescript-book/tree/master/code most of the code samples can be copied into alm and you can play with them as is. For code samples that need additional setup (e.g. npm modules), we will link you to the code sample before presenting the code. e.g.
33+
The source for this book is available in the books github repository https://github.com/basarat/typescript-book/tree/master/code most of the code samples can be copied into vscode and you can play with them as is. For code samples that need additional setup (e.g. npm modules), we will link you to the code sample before presenting the code. e.g.
3834

3935
`this/will/be/the/link/to/the/code.ts`
4036
```ts

0 commit comments

Comments
 (0)