Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geersch/typescript-esm-starter
Get started quickly with this ESM-enabled TypeScript starter repository. Configured with Vitest for testing, along with ESLint for code linting and prettier for formatting. ✨
https://github.com/geersch/typescript-esm-starter
eslint esm javascript prettier starter typescript vitest
Last synced: 13 days ago
JSON representation
Get started quickly with this ESM-enabled TypeScript starter repository. Configured with Vitest for testing, along with ESLint for code linting and prettier for formatting. ✨
- Host: GitHub
- URL: https://github.com/geersch/typescript-esm-starter
- Owner: geersch
- Created: 2024-03-24T12:31:33.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-24T13:52:28.000Z (10 months ago)
- Last Synced: 2025-01-12T13:48:48.393Z (14 days ago)
- Topics: eslint, esm, javascript, prettier, starter, typescript, vitest
- Language: TypeScript
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
Get started quickly with this ESM-enabled TypeScript starter repository. Configured with Vitest for testing, along with ESLint for code linting and prettier for formatting.
## Installation
```bash
$ yarn
```### Running the app
```bash
# development
$ yarn start:dev
```## Test
```bash
# unit tests
$ yarn test# e2e tests
$ yarn test:e2e# test coverage
$ yarn test:cov
```## Linting
```bash
$ yarn lint
```## Formatting code
```bash
$ yarn format
```