Online pixel art editor for Minecraft (with support for images!)
Find a file
2024-12-14 19:30:13 +00:00
generator fix: add alpha channel 2024-12-06 15:50:11 +00:00
public feat: add logo 2024-12-14 19:28:03 +00:00
src feat: add homepage 2024-12-14 19:30:13 +00:00
.gitignore chore: get average colors of blocks 2024-12-04 19:59:41 +00:00
.prettierrc refactor: rewrite and organize project 2024-12-12 22:38:53 +00:00
components.json chore: add shadcn/ui 2024-12-03 20:00:50 +00:00
eslint.config.js feat: initial commit 2024-12-03 19:53:55 +00:00
index.html feat: add logo 2024-12-14 19:28:03 +00:00
package.json feat: add homepage 2024-12-14 19:30:13 +00:00
pnpm-lock.yaml chore: pixi.js rewrite 2024-12-06 15:45:58 +00:00
postcss.config.js chore: add tailwind css 2024-12-03 19:56:57 +00:00
README.md feat: initial commit 2024-12-03 19:53:55 +00:00
tailwind.config.js fix: require is not defined in tailwind.config.js 2024-12-03 20:10:25 +00:00
tsconfig.app.json chore: add shadcn/ui 2024-12-03 20:00:50 +00:00
tsconfig.json chore: add shadcn/ui 2024-12-03 20:00:50 +00:00
tsconfig.node.json feat: initial commit 2024-12-03 19:53:55 +00:00
vite.config.ts chore: add shadcn/ui 2024-12-03 20:00:50 +00:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'

export default tseslint.config({
  // Set the react version
  settings: { react: { version: '18.3' } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
  },
})