snaerth / create-react-component-folder

Creates react component folder structure

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TypeScript: TypeError: Cannot read property 'createElement' of undefined

hrgui opened this issue · comments

{
  "compilerOptions": {
    "outDir": "build/dist",
    "module": "commonjs",
    "target": "es5",
    "lib": ["es6", "dom"],
    "sourceMap": true,
    "allowJs": true,
    "jsx": "react",
    "moduleResolution": "node",
    "forceConsistentCasingInFileNames": true,
    "noImplicitReturns": true,
    "noImplicitThis": false,
    "noImplicitAny": false,
    "strictNullChecks": false,
    "suppressImplicitAnyIndexErrors": true,
    "noUnusedLocals": false,
    "noUnusedParameters": false,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true
  },
  "include": [
    "src"
  ],
  "exclude": [
    "node_modules",
    "build",
    "scripts",
    "acceptance-tests",
    "webpack",
    "jest",
    "src/setupTests.ts",
    "config"
  ],
  "types": [
    "typePatches"
  ]
}

What do I need to support import React, { Component } from 'react'; ? I am using create-react-app with react-app-rewired.

"module": "es6"