Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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. ✨

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
```