Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 518 Bytes

File metadata and controls

28 lines (22 loc) · 518 Bytes

React and Typescript

Description

This repository is implemented with webpack and the initial setup to use typescript with react Documentation

Typescript config

{
  "compilerOptions": {
    "outDir": "./dist/",
    "sourceMap": true,
    "noImplicitAny": true,
    "module": "commonjs",
    "target": "es6",
    "jsx": "react"
  },
  "include": [
    "./src/**/*"
  ]
}

Start application

  • npm install
  • npm start