Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fallendeity/typescript-boilerplate
Boiler Plate for typescript projects.
https://github.com/fallendeity/typescript-boilerplate
boilerplate-template eslint prettier typescript
Last synced: about 1 month ago
JSON representation
Boiler Plate for typescript projects.
- Host: GitHub
- URL: https://github.com/fallendeity/typescript-boilerplate
- Owner: FallenDeity
- License: mit
- Created: 2023-05-21T07:14:45.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-21T21:07:31.000Z (over 1 year ago)
- Last Synced: 2024-11-07T06:49:06.830Z (3 months ago)
- Topics: boilerplate-template, eslint, prettier, typescript
- Language: TypeScript
- Homepage:
- Size: 75.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup
```bash
$ git clone https://github.com/FallenDeity/Typescript-Boilerplate
$ cd Typescript-Boilerplate
$ npm install
```# Build
```bash
$ npm run build
```Internally calls for webpack to build the project.
# Test
```bash
$ npm run test
```Internally calls for mocha to run the tests.
# Run
```bash
$ npm run build-and-run
```Internally calls for webpack to build the project and then runs the built project.
# Others
- `npm run lint` - Runs eslint on the project.
- `npm run lint:fix` - Runs eslint on the project and fixes the errors.
- `npm run prettier` - Runs prettier on the project.
- `npm run prettier:fix` - Runs prettier on the project and fixes the errors.> **Note**
> Few more commands are available in `package.json` under `scripts` section.