Skip to content

SashaBusinaro/from-js-to-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Netlify Status

from-js-to-react

I am learning javascript and react

Sources I used to learn:

Most commonly used commands:

npm i @types/react @types/react-dom @types/node

npx create-react-app my-app

npm start

npm run build

Typescript configuration:

npm i typescript --save-dev

Configure the compiler options in tsconfig.json

npx tsc --init

{
  "include": ["src"],
  "compilerOptions": {
    "outDir": "./build"
  }
}