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: 4 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-18T15:16:46.000Z (5 months ago)
- Last Synced: 2025-02-24T16:18:38.498Z (4 months ago)
- Topics: eslint, esm, javascript, prettier, starter, typescript, vitest
- Language: TypeScript
- Homepage:
- Size: 1.15 MB
- 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
```