microsoft / TypeScript-React-Starter

A starter template for TypeScript and React with a detailed README describing how to use the two together.
MIT License
11.08k stars 1.21k forks source link

import .png not working #214

Open samuelrego opened 5 years ago

samuelrego commented 5 years ago

if i set module as commonjs in tsconfig file, i am not able render image. but it works fine if i set module as esnext. but i want it as commonjs. please let me know the way.

example:

 import logo from './logo.png'

// inside render method (ouput is undefined)
<img src={logo}/>

tsconfig: "module": "commonjs",