Importing images in TypeScript React - “Cannot find module”

前端 未结 5 1586
南笙
南笙 2020-12-29 01:59

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

5条回答
  •  孤城傲影
    2020-12-29 02:50

    create index.d.ts file in folder src,and add this line

    declare module '*.jpg';
    

提交回复
热议问题