Skip to content

Latest commit

 

History

History
31 lines (17 loc) · 838 Bytes

File metadata and controls

31 lines (17 loc) · 838 Bytes

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