Skip to content

Commit 7e89f31

Browse files
committed
Add formatting
1 parent 121475d commit 7e89f31

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# TypeScript Workshops
22

3-
### Intro
3+
## Intro
44

55
This repository serves as an introduction to *TypeScript*. After reading through the documentation and completing the challenges, you should have a basic grasp of how the language works.
66

7-
### Installation
7+
## Setup
88

99
[VSCode](code.visualstudio.com/download) is a great editor for *TypeScript*. It has great navigation for the language and includes numerous extensions for both *JavaScript* and *Typescript*.
1010

@@ -15,11 +15,13 @@ Then install local packages from the root of the project.
1515
npm install
1616
```
1717

18-
### Basic Types
18+
## Folders
19+
20+
#### Basic Types
1921

2022
In the [`basic-types/`](./basic-types/) folder, there is some documentation on basic types and data structures. These come from https://www.typescriptlang.org/. Go through each file and experiment with the code.
2123

22-
### TSC Playground
24+
#### TSC Playground
2325

2426
*TypeScript* is compiled into *JavaScript* for both the browser and *Node.js*. The [`tsc-playground/`](./tsc-playground) folder contains an `index.ts` file that can be compiled into valid *JavaScript*.
2527

@@ -29,7 +31,7 @@ npm run compile-typescript
2931

3032
This command will output an `index.js` file. You can play around with different compilation flags. See documentation on that [here](https://www.typescriptlang.org/docs/handbook/compiler-options.html).
3133

32-
### Gimme It
34+
#### Gimme It
3335

3436
Here's a simple Kata to familiarize yourself with the syntax of the language.
3537

@@ -39,7 +41,7 @@ Get all tests passing by removing `x` from `xit` and running the tests.
3941
npm test gimme-it/
4042
```
4143

42-
### Two Fer
44+
#### Two Fer
4345

4446
This challenge requires string interpolation and input/return typing for functions.
4547

0 commit comments

Comments
 (0)