I am trying to import images to use inside a React component with TypeScript. The bundler I\'m using is Parcel (not Webpack).
I have created a .d.ts fil
.d.ts
there is a work around to it for example,
import logo from "../../assets/logo.png"
change this to
const logo = require("../../assets/logo.png")