我有一个用JS编写的React项目,我正在将其转换为TS。使用JS,可以实现以下功能:
import { ReactComponent as IconPerson } from '../../../icons/person.svg';
使用TS时,我收到以下错误:
找不到模块'../../../icons/person.svg'或其相应类型声明
我已将以下内容添加到新的index.d.ts文件中:
declare module '*.svg';
我还将index.d.ts文件添加到了tsconfig.json中的include
数组中:
{
include: ["src", "**/*.ts", "**/*.tsx", "index.d.ts"]
}
我错过了什么?
1条答案
按热度按时间sycxhyv71#
更改索引.d.ts: