Boiler plate for implementing console application using Node.JS and Typescript
Test files will have suffix .test.ts, e.g., index.test.ts
Run this command to run test
npm run test
Code coverage analysis is integrated to this repository.
The coverage report is located at coverage
folder.
The coverage threshold can be configured at .nycrc
Run code coverage by following this command
npm run cover
TSLint is configured in this project.
Run linter by following this command
npm run lint
Javascript package files will be contained in dist
folder.
To build package to pure js files, run this command.
npm run build