Labyrinth ========= ## Install Install typescript and tslint globally, if you haven't aready. ```bash npm install -g typescript tslint ``` Local dependencies: ```bash npm install ``` ## Build Compile TypeScript to JavaScript. ```bash tsc ``` Executing this in the application's root folder will use all settings from `tsconfig.json`. ## Run Run the application. ```bash node dist/app.js ``` ## Execute tests ```bash npm test ```