Decentralized censorship-resistant game mods platform. https://degmods.com
Go to file
2024-07-12 14:22:31 +05:00
public/assets feat: implement mod page 2024-07-11 17:52:48 +05:00
src feat: implemented write page 2024-07-12 14:22:31 +05:00
.eslintrc.cjs chore: initialized react-typescript app 2024-07-10 20:57:37 +05:00
.gitignore chore: initialized react-typescript app 2024-07-10 20:57:37 +05:00
index.html feat: implement mod page 2024-07-11 17:52:48 +05:00
package-lock.json feat: implemented react routing 2024-07-11 16:45:59 +05:00
package.json feat: implemented react routing 2024-07-11 16:45:59 +05:00
README.md chore: initialized react-typescript app 2024-07-10 20:57:37 +05:00
tsconfig.app.json feat: implemented header 2024-07-10 23:31:54 +05:00
tsconfig.json chore: initialized react-typescript app 2024-07-10 20:57:37 +05:00
tsconfig.node.json chore: initialized react-typescript app 2024-07-10 20:57:37 +05:00
vite.config.ts chore: initialized react-typescript app 2024-07-10 20:57:37 +05: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 {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list