https://github.com/sylhare/typescript-seed
Seed project for typescript
https://github.com/sylhare/typescript-seed
template template-project typescript
Last synced: 24 days ago
JSON representation
Seed project for typescript
- Host: GitHub
- URL: https://github.com/sylhare/typescript-seed
- Owner: sylhare
- License: mit
- Created: 2024-03-01T19:36:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-14T21:19:27.000Z (27 days ago)
- Last Synced: 2025-06-14T22:27:20.426Z (27 days ago)
- Topics: template, template-project, typescript
- Language: TypeScript
- Homepage:
- Size: 178 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Typescript-seed
Seed project for typescript.
Use this repository as a template for your typescript projects.## Getting Started
Install the dependencies:
```bash
npm install
```Build the project:
```bash
npm run build
```Run the project:
```bash
npm start
```Test the project using *Jest*:
```bash
npm test
# To test and display the coverage
npm test:cov
```Lint the project using *ESLint*:
```bash
npm run lint
# To fix the linting errors
npm run lint:fix
```