Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paaragon/typescript-boilerplate
https://github.com/paaragon/typescript-boilerplate
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/paaragon/typescript-boilerplate
- Owner: paaragon
- Created: 2022-06-23T14:41:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-23T14:52:58.000Z (over 2 years ago)
- Last Synced: 2023-02-28T16:11:39.319Z (almost 2 years ago)
- Language: TypeScript
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# typescript-boilerplate
## Why use this proejct?
Build your typescript projects without worrying about boilerplate
## NPM Scripts
* `build`: transpile your TypeScript into JavaScript and place it in `dist` folder.
* `test`: execute your tests under `test` folder.
* `test:watch`: execute your tests like `npm test` and relaunch them every time you change them.
* `test:coverage`: execute your tests and generate the coverage report.
* `start`: run your transpiled JavaScript application (you need to run `npm run build` first).
* `start:dev`: run your application just from your TypeScript code without transpiling.
* `lint`: lint your TypeScript code under `src`.
* `lint:fix`: automatically fix your lint issues (when possible).