Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/prosellen/modern-webdev-example
- Owner: prosellen
- License: mit
- Created: 2024-01-17T09:15:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-24T09:16:25.000Z (12 months ago)
- Last Synced: 2024-11-09T09:51:48.885Z (2 months ago)
- Language: TypeScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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