我有一个使用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/

    10-15 12:36