Skip to content

Latest commit

 

History

History
45 lines (40 loc) · 1.73 KB

README.md

File metadata and controls

45 lines (40 loc) · 1.73 KB

ToDo App with React and Typescript


ToDo App with React and Typescript by Jonatandb


Live Preview:


Project execution:

  • npm run dev

Investigated sites


Project initiation:

  • Project creation with Vite:

    • npm create vite@latest todo-app-react-typescript
  • Adding of linting with Eslint for TypeScript and React:

    • npm init @eslint/config
      • How would you like to use ESLint? -> To check syntax, find problems, and enforce code style
      • What type of modules does your project use? -> JavaScript modules "esm" (import/export)
      • Which framework does your project use? -> React
      • Does your project use TypeScript? -> Yes
      • Where does your code run? -> Browser
      • How would you like to define a style for your project? -> Use a popular style guide -> Standard
      • What format do you want your config file to be in? -> JavaScript
      • Which package manager do you want to use? -> npm
    • Eslint extra setup:
      • .eslintrc.cjs:
        • parserOptions:
          • Adding of: project: './tsconfig.json'
        • rules:
          • Adding of: 'react/react-in-jsx-scope': 'off'
          • Adding of: 'react/prop-types': 'off'