Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 889 Bytes

Readme.md

File metadata and controls

45 lines (29 loc) · 889 Bytes

typescript-primer

JavaScript that scales.

Quick primer on the why, what and how of TypeScript

Presented to you by Wizcorp.

Requirements

  • Node.js 8 or higher (recommend using NVS or NVM)
  • A web browser (Chrome recommended)

setup

npm install
npm install -g ts-node typescript

From the root of this repository, make sure to run npm install to install all the dependencies you will need to run the examples.

Chapters

01. Intro

  • What is TypeScript?
  • Why use TypeScript?
  • Type system

02. Compiler and typings

  • tsconfig.json
  • Type definition files
  • Typing dependencies
  • DefinitelyTyped (@types)

03. Tools

  • tslint
  • typedoc
  • jscpd

04. Webpack