tobal / typescript-dojo-seed

Seed for typescript projects or dojos

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typescript-dojo-seed

This is a repository for you to use as a seed for coding dojos using typescript. For a quick overview of the syntax of typescript, look at the following link:

https://learnxinyminutes.com/docs/typescript/

Setting up the environment

You need to install typescript globally and the dependencies locally using npm

$> npm install -g typescript
$> npm install

For your convenience, you should use an editor with typescript support. My recommendation is sublime text, you can use the Typescript plugin with it:

https://github.com/Microsoft/TypeScript-Sublime-Plugin

For vim, check out these plugins:

https://github.com/leafgarland/typescript-vim

https://github.com/Quramy/tsuquyomi

Running tests

You can compile your ts files and run your tests using the tests maketarget:

$> make tests

About

Seed for typescript projects or dojos


Languages

Language:TypeScript 77.5%Language:Makefile 22.5%