Vite + React + Typescript + Vitest + Eslint + Prettier + EditorConfig
A starter for React with Typescript with the blazing fast Vite, strong Vitest framework and all static code testing with Eslint and formatting with Prettier and EditorConfig.
Installation & run
-
Install Eslint and EditorConfig extensions for VS Code. Do not install the Prettier extension
-
Clone the repo and run:
cp .env.example .env
yarn
yarn dev
Test
yarn test
Troubleshooting
Error: Cannot find module 'node:path'
Solution: Use Node.js v16
Error: Command failed: node /path/to/project/node_modules/esbuild/bin/esbuild --version dyld: Symbol not found: _SecTrustEvaluateWithError
Solution:
- Stop using
npm
oryarn
for this project - Install pnpm
- Remove
node_modules
- Remove
yarn.lock
(if exists) - Remove
package-lock.json
(if exists) - Add the following to
package.json
"devDependencies":
"esbuild-wasm":"latest",
},
"pnpm":{
"overrides":{
"esbuild":"npm:esbuild-wasm@latest"
}
},
Download the dependencies:
pnpm i
Run the project:
pnpm run dev
Credits
This is a fork of https://github.com/TheSwordBreaker/vite-reactts-eslint-prettier