A simple World of Warcraft / Elden Ring / Zelda style prototype.
- Node.js (v22 or higher)
- npm
npm install
npm run dev
npm run build
This project uses Prettier with the prettier-plugin-organize-imports plugin for consistent code formatting and import organization.
npm run format
npm run format:check
If you're using VS Code, install the Prettier extension and the project settings will automatically format your code on save.
- Install the Prettier - Code formatter extension
- The project's
.vscode/settings.json
will enable format on save and organize imports automatically
The Prettier configuration is defined in .prettierrc
with the following settings:
- Single quotes
- 2 space indentation
- Semicolons
- 100 character line width
- Trailing commas in objects and arrays
- No parentheses around single arrow function parameters