/TypeScriptLearn

A collection of simple source code examples in TypeScript, featuring key aspects of the language.

Primary LanguageTypeScriptMIT LicenseMIT

TypeScript Learn

MIT license

A project with all main TypeScript features

Setup

Install all dependencies with

npm install

Run

Before running, you must transpile the code into JavaScript. To do that:

npm run build

transpiled code will be found in

/lib

Then, you can run

npm run test

Format source code and fix lint issues

To format the source code and fix lint issues, run

npm run format