Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joaquimnet/ts-general-template
Typescript starter template with rome, swc and vitest.
https://github.com/joaquimnet/ts-general-template
rome swc template typescript vitest
Last synced: 6 days ago
JSON representation
Typescript starter template with rome, swc and vitest.
- Host: GitHub
- URL: https://github.com/joaquimnet/ts-general-template
- Owner: joaquimnet
- Created: 2021-09-22T17:30:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-14T21:42:55.000Z (over 1 year ago)
- Last Synced: 2024-04-28T01:17:03.240Z (7 months ago)
- Topics: rome, swc, template, typescript, vitest
- Language: TypeScript
- Homepage:
- Size: 659 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TS General Template
A starter template for Typescript applications.
## Features
- [Eslint](https://eslint.org/) - Linter.
- [Prettier](https://prettier.io/) - Code formatter.
- [swc](https://swc.rs/) - Fast rust based TS compiler.
- [Vitest](https://vitest.dev/) - Blazing Fast Unit Test Framework.## Use it
`npx -y degit joaquimnet/ts-general-template my-app`
## Commands
### `dev` - Starts the project in development mode with nodemon.
### `start` - Starts the built project with node.
### `build` - Builds project to dist folder.
### `test` - Run tests.
### `test:watch` - Run tests, watch mode.
### `test:coverage` - Run tests, generate coverage report.
### `lint` & `format` - Lint and format your code.
### `ci` - Check types, runs linter and verifies format of the code.