https://github.com/mikedevelops/typescript-starter
A starting point for TypeScript applications with TSLint & Jest.
https://github.com/mikedevelops/typescript-starter
javascript jest tslint typescript
Last synced: 3 months ago
JSON representation
A starting point for TypeScript applications with TSLint & Jest.
- Host: GitHub
- URL: https://github.com/mikedevelops/typescript-starter
- Owner: mikedevelops
- Created: 2018-01-03T21:53:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-03T21:55:14.000Z (over 8 years ago)
- Last Synced: 2025-02-28T23:58:37.640Z (over 1 year ago)
- Topics: javascript, jest, tslint, typescript
- Language: JavaScript
- Homepage:
- Size: 60.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript Starter
A starting point for [TypeScript](https://www.typescriptlang.org) projects including [TSLint](https://github.com/palantir/tslint) and [ts-jest](https://github.com/kulshekhar/ts-jest).
## Getting Started
Install project dependencies.
```
npm install
```
Start a local webserver and watch for changes.
```
npm run dev
```
Run test suite.
```
npm test
```
Create a production build.
```
npm run prod
```