Introduction

Most popular programming language on the web.

Agenda

Types

Interface

Class

Module

Function

Generics

References

Handbook - http://www.typescriptlang.org/Handbookarrow-up-right

Playground - http://www.typescriptlang.org/Playgroundarrow-up-right

Typescript Demo with Webpack - https://github.com/hesing/typescript-webpack-demoarrow-up-right

Insatll Typescript

Using Typescript

Typescript compiltation with Sublime Text 3

install TypeScript plugin using sublime package manager. use Ctrl + B to compile typescript file.

ts build

it also help in code completion...

code completion

Also you want to install sublime text 3 tslint to get immediate error notification.

Typescript compiltation with Webpack

in webpack.config.js include ts-loader ...

now we can use typescript like below...

Last updated