Building a JSX Transpiler with Vite
Vite Setup Bootstrap a new vite project using vanilla template. npm create vite@latest jsx-renderer-vite -- --template vanilla Enter the project and install the dependencies cd jsx-renderer-vite && npm install Then, adjust the project files so that the final structure is like this . ├── src/ │ └── main.jsx ├── .gitignore ├── index.html ├── package-lock.json ├── package.json └── vite.config.js The following files are important for this setup process ...