use-vite

Installation
SKILL.md

Use Vite as the build system and Vitest as the test tool.

ESM Configuration

Use ESM syntax in vite.config.js. Add "type": "module" to package.json so all *.js files are interpreted as ESM. If a file must stay CJS, use the .cjs extension.

Do not use the CJS build of Vite's Node API — it is deprecated and removed in Vite 6. Reference: https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated

vite-plugin-checker

Add vite-plugin-checker to run TypeScript type checking alongside the build:

  1. Install:
pnpm add --save-dev vite-plugin-checker
  1. Add to vite.config.js:
Installs
15
First Seen
Apr 8, 2026
use-vite — gkwa/volcanicviper