Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 571 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 571 Bytes

Starting the program

npm install

There are several ways to run the code.

Inside vscode

  • Just press F5 in vscode
  • Press ctrl-shift-p and choose "Debug: Select and start debugging"
  • Using the UI

Directly running .ts from command line

Use one of the following (depends on what you like)

node --transpile-only ./src/index.ts   # This one is faster!
npm start

Compile to javascript and then run it

tsc -b -v
node dist/index.js

eslint

Eslint is configured, run linting by executing:

npm run lint