Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/prosellen/modern-webdev-example

Example project to display how Vite, Vitest, TypeScript, Eslint, and Prettier can be integrated
https://github.com/prosellen/modern-webdev-example

Last synced: 15 days ago
JSON representation

Example project to display how Vite, Vitest, TypeScript, Eslint, and Prettier can be integrated

Awesome Lists containing this project

README

        

# Example of a web project using Vite + Vitest + TypeScript + ESlint + Prettier

NPM Scripts:

* `npm run dev` - start a local server with "hot reloading" so you can watch the changes as you code
* `npm run build` - build optimized code into the `./dist` folder
* `npm run preview` - serve the build files from the `./dist` folder to test them
* `npm run test` - run Vitest against all `*.test.ts` files
* `npm run lint` - run ESlint on all files in `./src`
* `npm run lint:fix` - run ESlint on all files in `./src` and fix all automatically fixable errors