Test repo for playing with TypeScript.
It includes implementation of some geometric shapes in OOP style.
Clone repo
git clone https://github.com/sergei-zelinsky/shapes.git
Go to the directory of cloned repo and install all required dependencies
cd shapes
yarn
Compile TypeScript files
yarn run compile
And finally run index.js
file, for example, with Node
node index.js
This project uses Jest.
Run all tests
yarn test