@Peter Zilz Peter Zilz authored on 3 Oct 2018
.vscode Created base setup of typescript in vs code. 6 years ago
src Added validation for the data model. 6 years ago
.gitignore Created base setup of typescript in vs code. 6 years ago
Labyrinth.code-workspace Created base setup of typescript in vs code. 6 years ago
README.MD Added validation for the data model. 6 years ago
package-lock.json Introduced BDD-style tests with mocha and chai. 6 years ago
package.json Introduced BDD-style tests with mocha and chai. 6 years ago
tsconfig.json Created base setup of typescript in vs code. 6 years ago
tslint.json Added validation for the data model. 6 years ago
README.MD

Labyrinth

Install

Install typescript and tslint globally, if you haven't aready.

npm install -g typescript tslint

Local dependencies:

npm install

Build

Compile TypeScript to JavaScript.

tsc

Executing this in the application's root folder will use all settings from tsconfig.json.

Run

Run the application.

node dist/app.js

Execute tests

npm test