我有一个使用CRA typescript 创建的项目。
在项目的根目录中存在tsconfig.json
和一个名为types
的文件夹。在类型文件夹中,我为一个模块创建了modulename.d.ts
文件,该模块在node_modules上没有默认类型,并且在@types\module-name
上也没有任何内容。
但是我在编译时得到了错误。
为什么编译器在类型文件夹中找不到类型声明?
// .d.ts
declare module 'foo-react' {
import * as React from 'react';
// ...
}
这是
tsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/*"] },
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"plugins": [{ "name": "typescript-tslint-plugin" }],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve"
},
"include": ["src"]
}
最佳答案
结果证明
@types
@types
文件夹的路径(我在项目根目录中自定义的文件夹)应添加到types
属性中,而不是paths
属性中。 "types":["./@types"]
@types
文件夹中,其结构类似于@types/<module_name>/index.d.ts
或@types/moduleName.d.ts
。现在,该文件可以将该模块声明为any
或详细声明所有类型。 Typescript handbook中类型编译器选项的定义
关于typescript - 创建React App找不到声明的模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55230403/